Trait Settings

Source
pub trait Settings:
    TreeKey
    + TreeSerialize
    + TreeDeserializeOwned
    + Clone {
    // Provided method
    fn reset(&mut self) { ... }
}
Expand description

Specifies the API required for objects that are used as settings with the serial terminal interface.

Provided Methods§

Source

fn reset(&mut self)

Reset the settings to their default values.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§