pub trait Interpret<I: Interpretation> {
type Interpreted;
// Required method
fn interpret(self, interpretation: &mut I) -> Self::Interpreted;
}
Expand description
RDF interpretation function.
Required Associated Types§
Sourcetype Interpreted
type Interpreted
Interpreted form.
Required Methods§
Sourcefn interpret(self, interpretation: &mut I) -> Self::Interpreted
fn interpret(self, interpretation: &mut I) -> Self::Interpreted
Interpret the given resource.