pub trait IntoCollectionClient<'a, C, D, COLL>:
Debug
+ Send
+ Sync{
// Required method
fn into_collection_client<IntoCowStr>(
self,
collection_name: IntoCowStr,
) -> COLL
where IntoCowStr: Into<Cow<'a, str>>;
}
Required Methods§
fn into_collection_client<IntoCowStr>(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.