Skip to content

Commit 38ec08c

Browse files
committed
lmao clippy
1 parent d5a6fb9 commit 38ec08c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use tracing::debug;
1111
use tracing_error::SpanTrace;
1212

1313
/// Type representing an error response
14-
pub(in crate) struct XmlErrorResponse {
14+
pub(crate) struct XmlErrorResponse {
1515
/// code
1616
pub(crate) code: S3ErrorCode,
1717
/// message

src/lib.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
#[macro_use]
126126
mod internal_macros;
127127

128-
pub(in crate) mod utils;
128+
pub(crate) mod utils;
129129

130130
mod data_structures;
131131
mod ops;
@@ -150,14 +150,14 @@ pub mod path;
150150
pub mod storages;
151151

152152
/// Request type
153-
pub(in crate) type Request = hyper::Request<Body>;
153+
pub(crate) type Request = hyper::Request<Body>;
154154

155155
/// Response type
156-
pub(in crate) type Response = hyper::Response<Body>;
156+
pub(crate) type Response = hyper::Response<Body>;
157157

158158
/// `Box<dyn std::error::Error + Send + Sync + 'static>`
159-
pub(in crate) type BoxStdError = Box<dyn std::error::Error + Send + Sync + 'static>;
159+
pub(crate) type BoxStdError = Box<dyn std::error::Error + Send + Sync + 'static>;
160160

161-
pub(in crate) use async_trait::async_trait;
162-
pub(in crate) use hyper::{Body, Method, StatusCode};
163-
pub(in crate) use mime::Mime;
161+
pub(crate) use async_trait::async_trait;
162+
pub(crate) use hyper::{Body, Method, StatusCode};
163+
pub(crate) use mime::Mime;

0 commit comments

Comments
 (0)