pub trait IntoJsonWithContext<M, N>: Sized {
    // Required method
    fn into_json_with(self, context: &N) -> Meta<Value<M>, M>;
}

Required Methods§

source

fn into_json_with(self, context: &N) -> Meta<Value<M>, M>

Implementations on Foreign Types§

source§

impl<T: IntoJsonWithContext<M, N>, M, N> IntoJsonWithContext<M, N> for Stripped<T>

source§

fn into_json_with(self, context: &N) -> Meta<Value<M>, M>

source§

impl<T: IntoJsonWithContextMeta<M, N>, M, N> IntoJsonWithContext<M, N> for Meta<T, M>

source§

fn into_json_with(self, context: &N) -> Meta<Value<M>, M>

Implementors§