Trait LinkedDataResourceRef

Source
pub trait LinkedDataResourceRef<'a, I: Interpretation = (), V: Vocabulary = ()> {
    // Required method
    fn interpretation_ref(
        &self,
        vocabulary: &mut V,
        interpretation: &mut I,
    ) -> ResourceInterpretation<'a, I, V>;
}
Expand description

Type that can have an interpretation bound to the given lifetime.

Required Methods§

Source

fn interpretation_ref( &self, vocabulary: &mut V, interpretation: &mut I, ) -> ResourceInterpretation<'a, I, V>

Implementors§