Trait key_mutex::Empty

source ·
pub trait Empty {
    // Required method
    fn is_empty(&self) -> bool;
}

Required Methods§

source

fn is_empty(&self) -> bool

Implementations on Foreign Types§

source§

impl Empty for ()

source§

fn is_empty(&self) -> bool

source§

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

source§

fn is_empty(&self) -> bool

source§

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

source§

fn is_empty(&self) -> bool

source§

impl<K: Eq + Hash> Empty for DashSet<K>

source§

fn is_empty(&self) -> bool

source§

impl<K: Eq + Hash, V> Empty for DashMap<K, V>

source§

fn is_empty(&self) -> bool

source§

impl<T: Empty> Empty for Box<T>

source§

fn is_empty(&self) -> bool

source§

impl<T: Empty> Empty for Rc<T>

source§

fn is_empty(&self) -> bool

source§

impl<T: Empty> Empty for Arc<T>

source§

fn is_empty(&self) -> bool

source§

impl<V> Empty for Option<V>

source§

fn is_empty(&self) -> bool

source§

impl<V> Empty for BinaryHeap<V>

source§

fn is_empty(&self) -> bool

source§

impl<V> Empty for BTreeSet<V>

source§

fn is_empty(&self) -> bool

source§

impl<V> Empty for LinkedList<V>

source§

fn is_empty(&self) -> bool

source§

impl<V> Empty for VecDeque<V>

source§

fn is_empty(&self) -> bool

source§

impl<V> Empty for Vec<V>

source§

fn is_empty(&self) -> bool

source§

impl<V> Empty for HashSet<V>

source§

fn is_empty(&self) -> bool

Implementors§

source§

impl<K: Eq + Hash, V> Empty for KeyMutex<K, V>

source§

impl<K: Eq + Hash, V> Empty for KeyRwLock<K, V>