Trait async_graphql::GuardExt[][src]

pub trait GuardExt: Guard + Sized {
    fn and<R: Guard>(self, other: R) -> And<Self, R> { ... }
fn or<R: Guard>(self, other: R) -> Or<Self, R> { ... } }
Expand description

An extension trait for Guard.

Provided methods

Perform and operator on two rules

Perform or operator on two rules

Implementors