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

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors