Struct single_value_channel::Updater[][src]

pub struct Updater<T> { /* fields omitted */ }

The updating-half of the single value channel.

Implementations

impl<T> Updater<T>[src]

pub fn update(&self, value: T) -> Result<(), NoReceiverError<T>>[src]

Updates the latest value in this channel, to be accessed the next time Receiver::latest or Receiver::latest_mut is called.

This call will fail with NoReceiverError if the receiver has been dropped.

pub fn has_no_receiver(&self) -> bool[src]

Returns true if the receiver has been dropped. Thus indicating any following call to Updater::update would fail.

Trait Implementations

impl<T> Clone for Updater<T>[src]

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

Auto Trait Implementations

impl<T> RefUnwindSafe for Updater<T>[src]

impl<T> Send for Updater<T> where
    T: Send
[src]

impl<T> Sync for Updater<T> where
    T: Send
[src]

impl<T> Unpin for Updater<T>[src]

impl<T> UnwindSafe for Updater<T>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.