Observable

Trait Observable 

Source
pub trait Observable {
    // Required method
    fn is_empty(&self) -> bool;
}

Required Methods§

Source

fn is_empty(&self) -> bool

Implementations on Foreign Types§

Source§

impl Observable for isize

Source§

fn is_empty(&self) -> bool

Source§

impl<K, V> Observable for BTreeMap<K, V>

Source§

fn is_empty(&self) -> bool

Source§

impl<K, V> Observable for HashMap<K, V>

Source§

fn is_empty(&self) -> bool

Implementors§