[][src]Struct refreshable::RefreshHandle

pub struct RefreshHandle<T, E> { /* fields omitted */ }

A handle that can update the value associated with a refreshable.

Implementations

impl<T, E> RefreshHandle<T, E> where
    T: PartialEq + 'static + Sync + Send
[src]

pub fn refresh(&mut self, new_value: T) -> Result<(), Vec<E>>[src]

Updates the refreshable's value.

If the new value is equal to the refreshable's current value, the method returns immediately. Otherwise, it runs all registered subscriptions, collecting any errors and returning them all when finished.

Auto Trait Implementations

impl<T, E> !RefUnwindSafe for RefreshHandle<T, E>[src]

impl<T, E> Send for RefreshHandle<T, E> where
    T: Send + Sync
[src]

impl<T, E> Sync for RefreshHandle<T, E> where
    T: Send + Sync
[src]

impl<T, E> Unpin for RefreshHandle<T, E>[src]

impl<T, E> !UnwindSafe for RefreshHandle<T, E>[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, 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.