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

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

An extension trait for Guard

Provided methods

fn and<R: Guard>(self, other: R) -> And<Self, R>

Merge the two guards.

Loading content...

Implementors

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

Loading content...