logo
pub trait Resettable {
    fn reset(&self) -> bool;
}
Expand description

The Resettable should be implemented by objects intended to be reset (returned to initial state).

Required Methods

Call method to return object to it’s initial state.

Return: True if reset was successful, false otherwise.

Implementors