pub trait Completion {
    fn get(&self, input: &str) -> Option<String>;
}
Expand description

Trait for completion handling.

Required Methods

Implementors