Trait zcfg::ConfigParseable [] [src]

pub trait ConfigParseable {
    type Output;
    fn parse_from_str(s: &str) -> Result<Self::Output, ParseErr>;
}

Any standard type which may be parsed from a string

Associated Types

Required Methods

Implementations on Foreign Types

impl ConfigParseable for String
[src]

impl ConfigParseable for bool
[src]

impl ConfigParseable for u8
[src]

impl ConfigParseable for u32
[src]

impl ConfigParseable for u64
[src]

impl ConfigParseable for i8
[src]

impl ConfigParseable for i32
[src]

impl ConfigParseable for i64
[src]

impl ConfigParseable for f32
[src]

impl ConfigParseable for f64
[src]

impl<T> ConfigParseable for Option<T> where
    T: ConfigParseable
[src]

impl<T> ConfigParseable for Vec<T> where
    T: ConfigParseable
[src]

Implementors