[][src]Struct drone_core::fib::FiberOnce

pub struct FiberOnce<F, R>(_)
where
    F: FnOnce() -> R,
    F: Unpin
;

Fiber for FnOnce closure.

Can be created with fib::new_once.

Trait Implementations

impl<F, R> Fiber for FiberOnce<F, R> where
    F: FnOnce() -> R,
    F: Unpin
[src]

type Input = ()

The type of value this fiber consumes on each resume.

type Yield = !

The type of value this fiber yields.

type Return = R

The type of value this fiber returns on completion.

impl<F> FiberRoot for FiberOnce<F, ()> where
    F: FnOnce(),
    F: Unpin + Send + 'static, 
[src]

Auto Trait Implementations

impl<F, R> Unpin for FiberOnce<F, R>

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

impl<F, R> Sync for FiberOnce<F, R> where
    F: Sync

Blanket Implementations

impl<T> From<T> 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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