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