pub trait IsDefault: Default {
    fn is_default(&self) -> bool;
}
Expand description

Checks that type has a default value.

Required Methods

Checks that type has a default value.

Implementors