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

为空判断

Required Methods§

source

fn is_empty(&self) -> bool

是否为空

Implementors§

source§

impl<T> IsEmpty for Twhere T: INotEmpty,