[][src]Trait guion::widgets::util::state::AtomStateMut

pub trait AtomStateMut<T>: AtomState<T> {
    fn set(&mut self, v: T);
}

Simple atomic type state

Required methods

fn set(&mut self, v: T)

Loading content...

Implementations on Foreign Types

impl<'_, T> AtomStateMut<T> for &'_ mut T where
    T: Copy
[src]

impl<'_, T> AtomStateMut<T> for Cow<'_, T> where
    T: Copy
[src]

Loading content...

Implementors

impl<T> AtomStateMut<T> for T where
    T: Copy
[src]

Loading content...