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§
fn interpretation_ref( &self, vocabulary: &mut V, interpretation: &mut I, ) -> ResourceInterpretation<'a, I, V>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".