pub trait DisjunctionTrustPolicy: TrustPolicy {
    fn or<O>(self, other: O) -> AnyTrustPolicy<Self, O>
    where
        O: TrustPolicy
, { ... } }

Provided methods

Implementors