[][src]Trait async_graphql::guard::GuardExt

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

An extension trait for Guard.

Provided methods

pub fn and<R: Guard>(self, other: R) -> And<Self, R>[src]

Perform and operator on two rules

pub fn or<R: Guard>(self, other: R) -> Or<Self, R>[src]

Perform or operator on two rules

Loading content...

Implementors

impl<T: Guard> GuardExt for T[src]

Loading content...