IsEmptyable

Trait IsEmptyable 

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

Required Methods§

Source

fn is_empty(&self) -> bool

Implementations on Foreign Types§

Source§

impl IsEmptyable for String

Source§

fn is_empty(&self) -> bool

Source§

impl<'a> IsEmptyable for &'a str

Source§

fn is_empty(&self) -> bool

Source§

impl<T> IsEmptyable for Vec<T>

Source§

fn is_empty(&self) -> bool

Implementors§