Trait decent_toml_rs_alternative::FromToml[][src]

pub trait FromToml: Sized {
    fn from_toml(from: Option<&TomlValue>) -> Option<Self>;
}

Required methods

fn from_toml(from: Option<&TomlValue>) -> Option<Self>[src]

Loading content...

Implementations on Foreign Types

impl FromToml for u8[src]

impl FromToml for u16[src]

impl FromToml for u32[src]

impl FromToml for u64[src]

impl FromToml for usize[src]

impl FromToml for i8[src]

impl FromToml for i16[src]

impl FromToml for i32[src]

impl FromToml for i64[src]

impl FromToml for isize[src]

impl FromToml for f32[src]

impl FromToml for f64[src]

impl FromToml for bool[src]

impl FromToml for String[src]

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

impl<V> FromToml for HashMap<String, V> where
    V: FromToml
[src]

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

impl<T> FromToml for Box<T> where
    T: FromToml
[src]

impl FromToml for PathBuf[src]

Loading content...

Implementors

Loading content...