Parse

Trait Parse 

Source
pub trait Parse {
    // Required method
    fn parse(source: impl Into<String>) -> Result<Self, ParseError>
       where Self: Sized;
}

Required Methods§

Source

fn parse(source: impl Into<String>) -> Result<Self, ParseError>
where Self: Sized,

Implementors§