[][src]Trait decent_serde_json_alternative::FromJson

pub trait FromJson: Sized {
    pub fn from_json(json: &JsonValue) -> Option<Self>;
}

Required methods

pub fn from_json(json: &JsonValue) -> Option<Self>[src]

Loading content...

Implementations on Foreign Types

impl FromJson for u8[src]

impl FromJson for u16[src]

impl FromJson for u32[src]

impl FromJson for u64[src]

impl FromJson for usize[src]

impl FromJson for i8[src]

impl FromJson for i16[src]

impl FromJson for i32[src]

impl FromJson for i64[src]

impl FromJson for isize[src]

impl FromJson for f32[src]

impl FromJson for f64[src]

impl FromJson for String[src]

impl FromJson for bool[src]

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

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

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

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

Loading content...

Implementors

Loading content...