Trait monch::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<T> IsEmptyable for Vec<T>

source§

fn is_empty(&self) -> bool

source§

impl<'a> IsEmptyable for &'a str

source§

fn is_empty(&self) -> bool

Implementors§