Trait std::str::FromStr  
            
                [−]
            
        [src]
pub trait FromStr {
    type Err;
    fn from_str(s: &str) -> Result<Self, Self::Err>;
}A trait to abstract the idea of creating a new instance of a type from a string.
Associated Types
type Err
The associated error which can be returned from parsing.
Required Methods
fn from_str(s: &str) -> Result<Self, Self::Err>
Parses a string s to return a value of this type.
If parsing succeeds, return the value inside Ok, otherwise
when the string is ill-formatted return an error specific to the
inside Err. The error type is specific to implementation of the trait.
Implementors
- impl FromStr for f32
- impl FromStr for f64
- impl FromStr for isize
- impl FromStr for i8
- impl FromStr for i16
- impl FromStr for i32
- impl FromStr for i64
- impl FromStr for usize
- impl FromStr for u8
- impl FromStr for u16
- impl FromStr for u32
- impl FromStr for u64
- impl FromStr for bool
- impl FromStr for String
- impl FromStr for IpAddr
- impl FromStr for Ipv4Addr
- impl FromStr for Ipv6Addr
- impl FromStr for SocketAddr
