We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbf0c71 commit 11e578cCopy full SHA for 11e578c
integrations/object_store/examples/basic.rs
@@ -16,7 +16,7 @@
16
// under the License.
17
18
use bytes::Bytes;
19
-use object_store::ObjectStore;
+use object_store::ObjectStoreExt;
20
#[cfg(feature = "services-s3")]
21
use object_store::aws::AmazonS3Builder;
22
use object_store::path::Path as ObjectStorePath;
integrations/object_store/src/lib.rs
@@ -75,7 +75,7 @@ pub use service::{ObjectStoreBuilder, ObjectStoreService};
75
// Make sure `send_wrapper` works as expected
76
#[cfg(all(feature = "send_wrapper", test))]
77
mod assert_send {
78
- use object_store::{ObjectStore, PutPayload};
+ use object_store::{ObjectStore, ObjectStoreExt, PutPayload};
79
use opendal::Operator;
80
81
#[allow(dead_code)]
0 commit comments