Trait IsEmpty

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

An element that may be semantically empty.

Required Methods§

Source

fn is_empty(&self) -> bool

Checks if the element is empty.

Implementors§