Enum canal::broadcast::BroadcastError [] [src]

pub enum BroadcastError<T> {
    SendError(T),
    RecvError,
}

Error from broadcast module.

Variants

Send error

Receive error

Trait Implementations

impl<T: PartialEq> PartialEq for BroadcastError<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for BroadcastError<T>
[src]

impl<T: Clone> Clone for BroadcastError<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for BroadcastError<T>
[src]

impl<T: Debug> Debug for BroadcastError<T>
[src]

Formats the value using the given formatter.

impl<T: Display> Display for BroadcastError<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Send + Display + Debug + Any> Error for BroadcastError<T>
[src]

A short description of the error. Read more

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

impl<T> From<SendError<T>> for BroadcastError<T>
[src]

Performs the conversion.

impl<T> From<RecvError> for BroadcastError<T>
[src]

Performs the conversion.