pub trait IntoJson<M>: Sized {
    // Required method
    fn into_json(self) -> Meta<Value<M>, M>;
}

Required Methods§

source

fn into_json(self) -> Meta<Value<M>, M>

Implementations on Foreign Types§

source§

impl<T: IntoJsonMeta<M>, M> IntoJson<M> for Meta<T, M>

source§

fn into_json(self) -> Meta<Value<M>, M>

source§

impl<'n, T: IntoJsonWithContext<M, N>, M, N> IntoJson<M> for Contextual<T, &'n mut N>

source§

fn into_json(self) -> Meta<Value<M>, M>

source§

impl<'n, T: IntoJsonWithContext<M, N>, M, N> IntoJson<M> for Contextual<T, &'n N>

source§

fn into_json(self) -> Meta<Value<M>, M>

Implementors§