Trait TriggerOperationSupport

Source
pub trait TriggerOperationSupport {
    type O;

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

Required Associated Types§

Source

type O

Required Methods§

Implementors§

Source§

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

Source§

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