pub trait ConjunctionTrustPolicy: TrustPolicy {
    fn and<O>(self, other: O) -> AllTrustPolicy<Self, O>
    where
        O: TrustPolicy
, { ... } }

Provided methods

Implementors