Enum drone_core::sync::spsc::oneshot::RecvError [] [src]

pub enum RecvError<E> {
    Canceled,
    Complete(E),
}

Error returned from Receiver::poll.

Variants

The corresponding Sender is dropped.

The corresponding Sender is completed with an error.

Trait Implementations

impl<E: Debug> Debug for RecvError<E>
[src]

[src]

Formats the value using the given formatter.

impl<E: Clone> Clone for RecvError<E>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<E: PartialEq> PartialEq for RecvError<E>
[src]

[src]

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

[src]

This method tests for !=.

impl<E: Eq> Eq for RecvError<E>
[src]