user_input_with_autocomplete 0.1.2

The only purpose of this crate is to provide easy functionality to accept input from user, with an optional support for auto-complete of provided with a function
Documentation
1
2
3
4
5
6
/// This is a module that contains the struct and functions to get user input from terminal
/// cross-platform, and with autocomplete
/// To use auto complete you need to implement a function that takes a string and returns a string
/// 
pub mod input;
pub mod suggestion;