Trait IntoUserDefinedFunctionClient

Source
pub trait IntoUserDefinedFunctionClient<'a, C, D, COLL, UDF>:
    Debug
    + Send
    + Sync
where C: CosmosClient, D: DatabaseClient<C>, COLL: CollectionClient<C, D>, UDF: UserDefinedFunctionClient<C, D, COLL>,
{ // Required method fn into_user_defined_function_client<IntoCowStr>( self, user_defined_function_name: IntoCowStr, ) -> UDF where IntoCowStr: Into<Cow<'a, str>>; }

Required Methods§

Source

fn into_user_defined_function_client<IntoCowStr>( self, user_defined_function_name: IntoCowStr, ) -> UDF
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> IntoUserDefinedFunctionClient<'a, C, D, CollectionStruct<'a, C, D>, UserDefinedFunctionStruct<'a, C, D, CollectionStruct<'a, C, D>>> for CollectionStruct<'a, C, D>
where C: CosmosClient + Clone, D: DatabaseClient<C> + Clone,