pub trait IntoUserDefinedFunctionClient<'a, C, D, COLL, UDF>:
Debug
+ Send
+ Syncwhere
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§
fn into_user_defined_function_client<IntoCowStr>( self, user_defined_function_name: IntoCowStr, ) -> UDF
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.