Struct single_value_channel::NoReceiverError [] [src]

pub struct NoReceiverError<T>(pub T);

An error returned from the Updater::update function. Indicates that the paired Receiver has been dropped.

Contains the value that had been passed into Updater::update

Trait Implementations

impl<T: PartialEq> PartialEq for NoReceiverError<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 NoReceiverError<T>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter.