[][src]Trait azure_sdk_cosmos::IntoStoredProcedureClient

pub trait IntoStoredProcedureClient<'a, C, D, COLL, SP>: Debug + Send + Sync where
    C: CosmosClient,
    D: DatabaseClient<C>,
    COLL: CollectionClient<C, D>,
    SP: StoredProcedureClient<C, D, COLL>, 
{ fn into_stored_procedure_client<IntoCowStr>(
        self,
        stored_procedure_name: IntoCowStr
    ) -> SP
    where
        IntoCowStr: Into<Cow<'a, str>>
; }

Required methods

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

Loading content...

Implementors

impl<'a, C, D> IntoStoredProcedureClient<'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
[src]

Loading content...