trait TabComplete {
// Required method
fn complete(
&self,
part: &str,
client: &Client,
i18n: &Localization,
) -> Vec<String>;
}
Expand description
Trait for types that can provide tab completion suggestions.
This trait is implemented by types that can generate a list of possible completions for a partial input string.