[][src]Enum futures::future::Loop

pub enum Loop<T, S> {
    Break(T),
    Continue(S),
}

The status of a loop_fn loop.

Variants

Break(T)

Indicates that the loop has completed with output T.

Continue(S)

Indicates that the loop function should be called again with input state S.

Trait Implementations

impl<T: Debug, S: Debug> Debug for Loop<T, S>[src]

Auto Trait Implementations

impl<T, S> Unpin for Loop<T, S> where
    S: Unpin,
    T: Unpin

impl<T, S> Send for Loop<T, S> where
    S: Send,
    T: Send

impl<T, S> Sync for Loop<T, S> where
    S: Sync,
    T: Sync

impl<T, S> UnwindSafe for Loop<T, S> where
    S: UnwindSafe,
    T: UnwindSafe

impl<T, S> RefUnwindSafe for Loop<T, S> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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> From<T> for 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]