pub trait TryFromJson<M>: Sized {
    type Error;

    // Required method
    fn try_from_json(
        value: Meta<Value<M>, M>
    ) -> Result<Meta<Self, M>, Meta<Self::Error, M>>;
}

Required Associated Types§

Required Methods§

source

fn try_from_json( value: Meta<Value<M>, M> ) -> Result<Meta<Self, M>, Meta<Self::Error, M>>

Implementations on Foreign Types§

source§

impl<M> TryFromJson<M> for bool

§

type Error = Unexpected

source§

fn try_from_json( Meta: Meta<Value<M>, M> ) -> Result<Meta<Self, M>, Meta<Self::Error, M>>

source§

impl<M> TryFromJson<M> for IriRefBuf

Implementors§