1 2 3 4
/// Trait for completion handling. pub trait Completion { fn get(&self, input: &str) -> Option<String>; }