Enum fringe::generator::State [] [src]

pub enum State {
    Runnable,
    Unavailable,
}

Variants

Generator can be resumed. This is the initial state.

Generator cannot be resumed. This is the state of the generator after the generator function has returned or panicked.

Trait Implementations

impl Debug for State
[src]

Formats the value using the given formatter.

impl Clone for State
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for State
[src]