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

pub trait AtomState<T> {
    fn get(&self) -> T;
}

Simple atomic type state

Required methods

fn get(&self) -> T

Loading content...

Implementations on Foreign Types

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

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

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

Loading content...

Implementors

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

Loading content...