pub trait IfMatchConditionSupport<'a> {
    type O;

    fn with_if_match_condition(
        self,
        if_match_condition: IfMatchCondition<'a>
    ) -> Self::O; }

Required Associated Types

Required Methods

Implementors