pub trait FromTemplate<'a>: Sized {
    type Err;

    fn from_str(s: &'a str) -> Result<Self, Self::Err>;
}

Required Associated Types§

Required Methods§

Implementors§