Trait rdf_types::interpretation::Interpretation
source · pub trait Interpretation {
type Resource;
type Resources<'a>: 'a + Iterator<Item = Self::Resource>
where Self: 'a;
// Required method
fn resources(&self) -> Self::Resources<'_>;
}Expand description
RDF resource interpretation.