[][src]Trait async_graphql::guard::PostGuardExt

pub trait PostGuardExt<T: Send + Sync>: PostGuard<T> + Sized {
    fn and<R: PostGuard<T>>(self, other: R) -> PostAnd<T, Self, R> { ... }
}

An extension trait for PostGuard<T>

Provided methods

fn and<R: PostGuard<T>>(self, other: R) -> PostAnd<T, Self, R>

Merge the two guards.

Loading content...

Implementors

impl<T: PostGuard<R>, R: Send + Sync> PostGuardExt<R> for T[src]

Loading content...