pub trait SettingCompletion {
// Required method
fn get_value_completions() -> HashMap<String, Vec<String>>;
}Expand description
Trait specifying the value completions for settings.
Required Methods§
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.