dialoguer-ext 0.11.0

A fork of dialoguer: A command line prompting library.
Documentation
1
2
3
4
/// Trait for completion handling.
pub trait Completion {
    fn get(&self, input: &str) -> Option<String>;
}