pub trait ReverseIriInterpretation: Interpretation {
type Iri;
type Iris<'a>: Clone + Iterator<Item = &'a Self::Iri>
where Self: 'a;
// Required method
fn iris_of<'a>(&'a self, id: &'a Self::Resource) -> Self::Iris<'a>;
}
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.