Trait WithStoredProcedureClient

Source
pub trait WithStoredProcedureClient<'a, C, D, COLL, SP>:
    Debug
    + Send
    + Sync
where 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§

Source

fn with_stored_procedure_client<IntoCowStr>( &'a self, stored_procedure_name: IntoCowStr, ) -> SP
where IntoCowStr: Into<Cow<'a, str>>,

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.

Implementors§

Source§

impl<'a, C, D> WithStoredProcedureClient<'a, C, D, CollectionStruct<'a, C, D>, StoredProcedureStruct<'a, C, D, CollectionStruct<'a, C, D>>> for CollectionStruct<'a, C, D>
where C: CosmosClient + Clone, D: DatabaseClient<C> + Clone,