pub trait InterpretationMut: Interpretation {
// Required methods
fn insert_iri<'a>(
&mut self,
iri: impl Into<Cow<'a, IriBuf>>,
) -> Self::Resource;
fn insert_literal<'a>(
&mut self,
literal: impl Into<CowLiteral<'a>>,
) -> Self::Resource;
// Provided method
fn insert_term<'a>(
&mut self,
term: impl Into<CowTerm<'a>>,
) -> Self::Resource { ... }
}Expand description
Mutable interpretation.
Required Methods§
fn insert_iri<'a>(&mut self, iri: impl Into<Cow<'a, IriBuf>>) -> Self::Resource
fn insert_literal<'a>( &mut self, literal: impl Into<CowLiteral<'a>>, ) -> Self::Resource
Provided Methods§
fn insert_term<'a>(&mut self, term: impl Into<CowTerm<'a>>) -> Self::Resource
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".