pub struct WithSpawner<S, Sp> { /* private fields */ }Trait Implementations§
Source§impl<'a, S, Sp> IntoEndpoint<'a> for WithSpawner<S, Sp>
impl<'a, S, Sp> IntoEndpoint<'a> for WithSpawner<S, Sp>
Source§impl<'a, E, S, Sp> Wrapper<'a, E> for WithSpawner<S, Sp>where
E: Endpoint<'a, Output = (S::Context,)>,
S: SharedSchema,
Sp: Executor<Execute<GraphQLTask<S>>> + 'a,
impl<'a, E, S, Sp> Wrapper<'a, E> for WithSpawner<S, Sp>where
E: Endpoint<'a, Output = (S::Context,)>,
S: SharedSchema,
Sp: Executor<Execute<GraphQLTask<S>>> + 'a,
Auto Trait Implementations§
impl<S, Sp> Freeze for WithSpawner<S, Sp>
impl<S, Sp> RefUnwindSafe for WithSpawner<S, Sp>where
S: RefUnwindSafe,
Sp: RefUnwindSafe,
impl<S, Sp> Send for WithSpawner<S, Sp>
impl<S, Sp> Sync for WithSpawner<S, Sp>
impl<S, Sp> Unpin for WithSpawner<S, Sp>
impl<S, Sp> UnwindSafe for WithSpawner<S, Sp>where
S: UnwindSafe,
Sp: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more