pub enum CompoundValueTriples<'a, T, B, L> {
Literal(Box<CompoundLiteralTriples<T, B, L>>),
List(ListTriples<'a, T, B, L>),
}
Variants§
Literal(Box<CompoundLiteralTriples<T, B, L>>)
List(ListTriples<'a, T, B, L>)
Implementations§
Source§impl<'a, T, B, L> CompoundValueTriples<'a, T, B, L>
impl<'a, T, B, L> CompoundValueTriples<'a, T, B, L>
pub fn literal(l: CompoundLiteralTriples<T, B, L>) -> Self
pub fn with<'n, V: Vocabulary<Iri = T, BlankId = B, Literal = L>, G: Generator<V>>( self, vocabulary: &'n mut V, generator: G, rdf_direction: Option<RdfDirection>, ) -> CompoundValueTriplesWith<'a, 'n, V, G> ⓘ
pub fn next<V, G: Generator<V>>(
&mut self,
vocabulary: &mut V,
generator: &mut G,
rdf_direction: Option<RdfDirection>,
) -> Option<Triple<T, B, L>>where
T: Clone,
B: Clone,
L: Clone,
V: Vocabulary<Iri = T, BlankId = B, Literal = L> + IriVocabularyMut + LiteralVocabularyMut,
Auto Trait Implementations§
impl<'a, T, B, L> Freeze for CompoundValueTriples<'a, T, B, L>
impl<'a, T, B, L> RefUnwindSafe for CompoundValueTriples<'a, T, B, L>
impl<'a, T, B, L> Send for CompoundValueTriples<'a, T, B, L>
impl<'a, T, B, L> Sync for CompoundValueTriples<'a, T, B, L>
impl<'a, T, B, L> Unpin for CompoundValueTriples<'a, T, B, L>
impl<'a, T, B, L> UnwindSafe for CompoundValueTriples<'a, T, B, L>
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