Enum panda_pile::PipeEnd[][src]

pub enum PipeEnd<PL, CS> {
    ProducerLast(PL),
    ConsumerStopped(CS),
}
Expand description

Indicates why piping data from a producer into a consumer ended.

Variants

ProducerLast(PL)

The producer produced its last item.

Tuple Fields of ProducerLast

0: PL
ConsumerStopped(CS)

The consumer stopped accepting more data.

Tuple Fields of ConsumerStopped

0: CS

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.