paris 1.5.15

A simple logger for your CLI apps or other things you want in the terminal
Documentation
1
2
3
4
5
6
7
8
pub trait FromKey {
    /// Define your own implementation of how
    /// a given key will return the type that
    /// implements it. A wrapper around FromStr
    /// in case the key returns different things based
    /// on some internal value.
    fn from_key(key: &str) -> Option<String>;
}