Struct hooks_core::default_runner::RunningHookNextValue
source · pub struct RunningHookNextValue<'hook, H, G, Args> { /* private fields */ }
Trait Implementations
sourceimpl<'hook, H, G, Args> Future for RunningHookNextValue<'hook, H, G, Args>where
H: Hook<Args> + Unpin,
G: GetArgsForHook<Runner, H, Args>,
impl<'hook, H, G, Args> Future for RunningHookNextValue<'hook, H, G, Args>where
H: Hook<Args> + Unpin,
G: GetArgsForHook<Runner, H, Args>,
type Output = Option<<H as HookLifetime<'hook, Args, &'hook <H as HookBounds>::Bounds>>::Value>
type Output = Option<<H as HookLifetime<'hook, Args, &'hook <H as HookBounds>::Bounds>>::Value>
The type of value produced on completion.
Auto Trait Implementations
impl<'hook, H, G, Args> RefUnwindSafe for RunningHookNextValue<'hook, H, G, Args>where
Args: RefUnwindSafe,
G: RefUnwindSafe,
H: RefUnwindSafe,
impl<'hook, H, G, Args> Send for RunningHookNextValue<'hook, H, G, Args>where
Args: Send,
G: Send,
H: Send,
impl<'hook, H, G, Args> Sync for RunningHookNextValue<'hook, H, G, Args>where
Args: Sync,
G: Sync,
H: Sync,
impl<'hook, H, G, Args> Unpin for RunningHookNextValue<'hook, H, G, Args>
impl<'hook, H, G, Args> !UnwindSafe for RunningHookNextValue<'hook, H, G, Args>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
sourcefn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more