pub trait TryFromStrippedJson<M>: Sized {
    fn try_from_stripped_json(value: Value<M>) -> Result<Self, InvalidContext>;
}

Required Methods

Implementations on Foreign Types

Implementors