Enum graph_rdfa_processor::Node
source · pub enum Node<'a> {
Iri(Cow<'a, str>),
Literal(Literal<'a>),
Ref(Arc<Node<'a>>),
List(Vec<Node<'a>>),
BNode(u64),
}
Variants§
Trait Implementations§
source§impl PartialEq for Node<'_>
impl PartialEq for Node<'_>
source§impl<'a> PartialOrd for Node<'a>
impl<'a> PartialOrd for Node<'a>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<'a> Eq for Node<'a>
impl<'a> StructuralEq for Node<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Node<'a>
impl<'a> Send for Node<'a>
impl<'a> Sync for Node<'a>
impl<'a> Unpin for Node<'a>
impl<'a> UnwindSafe for Node<'a>
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