pub trait TryFromJson<T, B, M> {
    fn try_from_json_in(
        vocabulary: &mut impl VocabularyMut<Iri = T, BlankId = B>,
        value: Meta<Value<M>, M>
    ) -> Result<Meta<Self, M>, Meta<InvalidExpandedJson<M>, M>>; }

Required Methods

Implementations on Foreign Types

Implementors