IsDefault

Trait IsDefault 

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

Required Methods§

Source

fn is_default(&self) -> bool

Implementors§

Source§

impl<T> IsDefault for T
where T: Default + PartialEq,