[][src]Struct futures_signals::signal::ReadOnlyMutable

pub struct ReadOnlyMutable<A>(_);

Implementations

impl<A> ReadOnlyMutable<A>[src]

pub fn lock_ref(&self) -> MutableLockRef<'_, A>[src]

pub fn signal_ref<B, F>(&self, f: F) -> MutableSignalRef<A, F> where
    F: FnMut(&A) -> B, 
[src]

impl<A: Copy> ReadOnlyMutable<A>[src]

pub fn get(&self) -> A[src]

pub fn signal(&self) -> MutableSignal<A>[src]

impl<A: Clone> ReadOnlyMutable<A>[src]

pub fn get_cloned(&self) -> A[src]

pub fn signal_cloned(&self) -> MutableSignalCloned<A>[src]

Trait Implementations

impl<A> Clone for ReadOnlyMutable<A>[src]

impl<A> Debug for ReadOnlyMutable<A> where
    A: Debug
[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for ReadOnlyMutable<A>

impl<A> Send for ReadOnlyMutable<A> where
    A: Send + Sync

impl<A> Sync for ReadOnlyMutable<A> where
    A: Send + Sync

impl<A> Unpin for ReadOnlyMutable<A>

impl<A> UnwindSafe for ReadOnlyMutable<A>

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.