Enum funnel::FunnelError [] [src]

pub enum FunnelError {
    RecvError(RecvError),
    NoSourcesError,
}

FunnelError contains information about errors that can occur using a Funnel.

In particular, it contains information about recv()ing from particular Receivers as well as the error which occurs if a user attempts to recv() from a funnel which has not had any Receivers added to it.

Variants

Trait Implementations

impl Debug for FunnelError
[src]

Formats the value using the given formatter.

impl Display for FunnelError
[src]

Formats the value using the given formatter. Read more

impl Error for FunnelError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more