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