[][src]Struct act_zero::async_fn::BindOutput

pub struct BindOutput<F, R> { /* fields omitted */ }

Return type of AsyncFnOnce::bind_output and AsyncMutFnOnce::bind_output.

Trait Implementations

impl<F, T, R> AsyncFnOnce<T> for BindOutput<F, R> where
    F: AsyncFnOnce<T, Output = R>,
    R: Send + 'static, 
[src]

type Output = ()

Output type of the returned future.

impl<F, T, R> AsyncMutFnOnce<T> for BindOutput<F, R> where
    F: AsyncMutFnOnce<T, Output = R>,
    R: Send + 'static, 
[src]

type Output = ()

Output type of the returned future.

Auto Trait Implementations

impl<F, R> !RefUnwindSafe for BindOutput<F, R>

impl<F, R> Send for BindOutput<F, R> where
    F: Send,
    R: Send

impl<F, R> Sync for BindOutput<F, R> where
    F: Sync,
    R: Send

impl<F, R> Unpin for BindOutput<F, R> where
    F: Unpin

impl<F, R> !UnwindSafe for BindOutput<F, R>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, E> IntoResult<T, E> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.