Trait TriggerTypeSupport

Source
pub trait TriggerTypeSupport {
    type O;

    // Required method
    fn with_trigger_type(self, a: TriggerType) -> Self::O;
}

Required Associated Types§

Source

type O

Required Methods§

Source

fn with_trigger_type(self, a: TriggerType) -> Self::O

Implementors§

Source§

impl<'a, C, D, COLL, TriggerOperationSet, BodySet> TriggerTypeSupport for CreateOrReplaceTriggerBuilder<'a, C, D, COLL, TriggerOperationSet, No, BodySet>
where TriggerOperationSet: ToAssign, BodySet: ToAssign, C: CosmosClient, D: DatabaseClient<C>, COLL: CollectionClient<C, D>,

Source§

type O = CreateOrReplaceTriggerBuilder<'a, C, D, COLL, TriggerOperationSet, Yes, BodySet>