pub trait ValidatedWrapper: Validated {
    type Error: Display + PartialEq + Clone + Debug;

    fn from_string(from_string_input: String) -> Result<Self, Self::Error>;
    fn from_str(from_str_input: &str) -> Result<Self, Self::Error>;
}

Required Associated Types§

Required Methods§

Implementors§