Trait ockam_entity::ConjunctionTrustPolicy[][src]

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

Provided methods

fn and<O: TrustPolicy>(self, other: O) -> AllTrustPolicy<Self, O>[src]

Implementors

impl<T> ConjunctionTrustPolicy for T where
    T: TrustPolicy
[src]