pub struct ToRdf<V: Vocabulary, G> { /* private fields */ }
Implementations§
Source§impl<V: Vocabulary, G: Generator<V>> ToRdf<V, G>
impl<V: Vocabulary, G: Generator<V>> ToRdf<V, G>
pub fn quads(&mut self) -> Quads<'_, V, G> ⓘ
pub fn cloned_quads(&mut self) -> ClonedQuads<'_, V, G> ⓘ
pub fn vocabulary(&self) -> &V
pub fn vocabulary_mut(&mut self) -> &mut V
pub fn into_vocabulary(self) -> V
pub fn generator(&self) -> &G
pub fn generator_mut(&mut self) -> &mut G
pub fn into_generator(self) -> G
pub fn document(&self) -> &ExpandedDocument<V::Iri, V::BlankId>
pub fn document_mut(&mut self) -> &mut ExpandedDocument<V::Iri, V::BlankId>
pub fn into_document(self) -> ExpandedDocument<V::Iri, V::BlankId>
Auto Trait Implementations§
impl<V, G> Freeze for ToRdf<V, G>
impl<V, G> RefUnwindSafe for ToRdf<V, G>where
V: RefUnwindSafe,
G: RefUnwindSafe,
<V as IriVocabulary>::Iri: RefUnwindSafe,
<V as BlankIdVocabulary>::BlankId: RefUnwindSafe,
impl<V, G> Send for ToRdf<V, G>
impl<V, G> Sync for ToRdf<V, G>
impl<V, G> Unpin for ToRdf<V, G>
impl<V, G> UnwindSafe for ToRdf<V, G>where
V: UnwindSafe,
G: UnwindSafe,
<V as IriVocabulary>::Iri: UnwindSafe,
<V as BlankIdVocabulary>::BlankId: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more