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

Required Methods§

source

fn is_empty(&self) -> bool

Implementations on Foreign Types§

source§

impl IsEmpty for Option<usize>

source§

fn is_empty(&self) -> bool

source§

impl IsEmpty for Option<String>

source§

fn is_empty(&self) -> bool

source§

impl IsEmpty for usize

source§

fn is_empty(&self) -> bool

source§

impl IsEmpty for String

source§

fn is_empty(&self) -> bool

Implementors§