Enum asynchronous::Emit [] [src]

pub enum Emit<Ev> {
    Event(Ev),
    Continue,
    Stop,
}

Enum representing type of Emit in loops

Variants

Event

Generates a new event

Continue

Continues the loop

Stop

Stops the loop