pub trait IntoAttachmentClient<'a, C, D, COLL, DOC, ATT>:
Debug
+ Send
+ Syncwhere
C: CosmosClient,
D: DatabaseClient<C>,
COLL: CollectionClient<C, D>,
DOC: DocumentClient<C, D, COLL>,
ATT: AttachmentClient<C, D, COLL, DOC>,{
// Required method
fn into_attachment_client<IntoCowStr>(
self,
attachment_name: IntoCowStr,
) -> ATT
where IntoCowStr: Into<Cow<'a, str>>;
}
Required Methods§
fn into_attachment_client<IntoCowStr>(self, attachment_name: IntoCowStr) -> ATT
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.