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<'t, V, T: InterpretationMut<V>> InterpretationMut<V> for &'t mut T

source§

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

Implementors§