[][src]Trait fast_input::FastParse

pub trait FastParse<'a> {
    fn fparse(s: &'a str) -> Self;
}

Helper trait for parsing Only used to avoid repeating type constraints

Required methods

fn fparse(s: &'a str) -> Self

Parses a type from a string slice

Loading content...

Implementors

impl<'a> FastParse<'a> for Str<'a>[src]

impl<'a, T: FromStr> FastParse<'a> for T where
    <T as FromStr>::Err: Debug
[src]

Loading content...