Trait InterpretationMut

Source
pub trait InterpretationMut<V>: Interpretation {
    // Required method
    fn new_resource(&mut self, vocabulary: &mut V) -> Self::Resource;
}
Expand description

Mutable RDF resource interpretation.

Required Methods§

Source

fn new_resource(&mut self, vocabulary: &mut V) -> Self::Resource

Creates a new resource.

Implementations on Foreign Types§

Source§

impl<V, T: InterpretationMut<V>> InterpretationMut<V> for &mut T

Source§

fn new_resource(&mut self, vocabulary: &mut V) -> Self::Resource

Implementors§