pub trait WithCollectionClient<'a, C, D, COLL>:
Debug
+ Send
+ Sync{
// Required method
fn with_collection_client<IntoCowStr>(
&'a self,
collection_name: IntoCowStr,
) -> COLL
where IntoCowStr: Into<Cow<'a, str>>;
}
Required Methods§
fn with_collection_client<IntoCowStr>( &'a self, collection_name: IntoCowStr, ) -> COLL
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.