Trait poem::guard::GuardExt[][src]

pub trait GuardExt: Guard {
    fn and<T>(self, other: T) -> GuardAnd<Self, T>
    where
        T: Guard,
        Self: Sized
, { ... }
fn or<T>(self, other: T) -> GuardOr<Self, T>
    where
        T: Guard,
        Self: Sized
, { ... } }
Expand description

Extension trait for Guard.

Provided methods

Perform and operator on two rules.

Perform or operator on two rules.

Implementors