pub trait Clearable {
    fn is_cleared(&self) -> bool;
}
Expand description

The Clearable trait is used to provide metadata around some types that can be cleared.

Required Methods

Returns true if self has been cleared and not yet been written to since.

Implementations on Foreign Types

Implementors