pub trait TermInterpretation<I = Id<IriBuf, BlankIdBuf>, L = Literal>: IdInterpretation<I> + LiteralInterpretation<L> {
    // Provided method
    fn term_interpretation(&self, term: &Term<I, L>) -> Option<Self::Resource> { ... }
}
Expand description

RDF Term interpretation.

Provided Methods§

source

fn term_interpretation(&self, term: &Term<I, L>) -> Option<Self::Resource>

Returns the interpretation of the given term, if any.

Implementors§