SettingCompletion

Trait SettingCompletion 

Source
pub trait SettingCompletion {
    // Required method
    fn get_value_completions() -> HashMap<String, Vec<String>>;
}
Expand description

Trait specifying the value completions for settings.

Required Methods§

Source

fn get_value_completions() -> HashMap<String, Vec<String>>

Get the value completions of all the setting.

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§