pub trait ArgParse: Sized {
    fn arg_parse(s: &str) -> Result<Self, ArgParseError<'_>>;
}
Expand description

Parse str -> Self

Required Methods§

Parse str -> Self

Implementations on Foreign Types§

Implementors§