pub trait IntoTriggerClient<'a, C, D, COLL, TRIGGER>:
Debug
+ Send
+ Syncwhere
C: CosmosClient,
D: DatabaseClient<C>,
COLL: CollectionClient<C, D>,
TRIGGER: TriggerClient<C, D, COLL>,{
// Required method
fn into_trigger_client<IntoCowStr>(
self,
trigger_name: IntoCowStr,
) -> TRIGGER
where IntoCowStr: Into<Cow<'a, str>>;
}
Required Methods§
fn into_trigger_client<IntoCowStr>(self, trigger_name: IntoCowStr) -> TRIGGER
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.