Skip to content

Commit a2361d0

Browse files
authored
styles: Make xuanwo happy (#524)
* styles: Make xuanwo happy Signed-off-by: Xuanwo <[email protected]> * make xuanwo happy Signed-off-by: Xuanwo <[email protected]> * Fix unit test Signed-off-by: Xuanwo <[email protected]> * Make import verbose Signed-off-by: Xuanwo <[email protected]> Signed-off-by: Xuanwo <[email protected]>
1 parent b0ef4b8 commit a2361d0

File tree

4 files changed

+343
-319
lines changed

4 files changed

+343
-319
lines changed

src/layers/tracing.rs

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,27 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
use crate::ops::*;
16-
use crate::{
17-
Accessor, AccessorMetadata, BytesReader, BytesWriter, DirStreamer, Layer, ObjectMetadata,
18-
};
19-
use async_trait::async_trait;
2015
use std::io::Result;
2116
use std::sync::Arc;
2217

18+
use async_trait::async_trait;
19+
20+
use crate::ops::OpCreate;
21+
use crate::ops::OpDelete;
22+
use crate::ops::OpList;
23+
use crate::ops::OpPresign;
24+
use crate::ops::OpRead;
25+
use crate::ops::OpStat;
26+
use crate::ops::OpWrite;
27+
use crate::ops::PresignedRequest;
28+
use crate::Accessor;
29+
use crate::AccessorMetadata;
30+
use crate::BytesReader;
31+
use crate::BytesWriter;
32+
use crate::DirStreamer;
33+
use crate::Layer;
34+
use crate::ObjectMetadata;
35+
2336
/// TracingLayer will add tracing for OpenDAL.
2437
///
2538
/// # Examples

0 commit comments

Comments
 (0)