pub trait IntoSyntax<T, B, M> {
    // Required method
    fn into_syntax(
        self,
        vocabulary: &impl Vocabulary<Iri = T, BlankId = B>,
        meta: M
    ) -> Value<M>;
}
Expand description

Context fragment to syntax method.

Required Methods§

source

fn into_syntax( self, vocabulary: &impl Vocabulary<Iri = T, BlankId = B>, meta: M ) -> Value<M>

Implementations on Foreign Types§

source§

impl<T, B, M> IntoSyntax<T, B, M> for Value<M>

source§

fn into_syntax( self, _namespace: &impl Vocabulary<Iri = T, BlankId = B>, _meta: M ) -> Value<M>

Implementors§

source§

impl<T, B, M: Clone, L: IntoSyntax<T, B, M>> IntoSyntax<T, B, M> for Context<T, B, L, M>