pub trait WithStoredProcedureClient<'a, C, D, COLL, SP>:
Debug
+ Send
+ Syncwhere
C: CosmosClient,
D: DatabaseClient<C>,
COLL: CollectionClient<C, D>,
SP: StoredProcedureClient<C, D, COLL>,{
// Required method
fn with_stored_procedure_client<IntoCowStr>(
&'a self,
stored_procedure_name: IntoCowStr,
) -> SP
where IntoCowStr: Into<Cow<'a, str>>;
}
Required Methods§
fn with_stored_procedure_client<IntoCowStr>( &'a self, stored_procedure_name: IntoCowStr, ) -> SP
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.