wp-conf-base 0.4.0

Common configuration primitives, adapters, and validators shared by WarpParse connectors.
Documentation
1
2
3
4
pub trait ConfParser<T: ?Sized> {
    fn from_parse(items: &T) -> Self;
    fn validate(items: &T) -> Result<(), String>;
}