[src]

Trait std::from_str::FromStr

pub trait FromStr {
    fn from_str(s: &str) -> Option<Self>;
}

A trait to abstract the idea of creating a new instance of a type from a string.

Required Methods

fn from_str(s: &str) -> Option<Self>

Parses a string s to return an optional value of this type. If the string is ill-formatted, the None is returned.

Implementors