Enum comrak::arena_tree::NodeEdge
source · pub enum NodeEdge<T> {
Start(T),
End(T),
}
Expand description
An edge of the node graph returned by a traversal iterator.
Variants§
Start(T)
Indicates that start of a node that has children.
Yielded by Traverse::next
before the node’s descendants.
In HTML or XML, this corresponds to an opening tag like <div>
End(T)
Indicates that end of a node that has children.
Yielded by Traverse::next
after the node’s descendants.
In HTML or XML, this corresponds to a closing tag like </div>
Trait Implementations§
Auto Trait Implementations§
impl<T> RefUnwindSafe for NodeEdge<T>where
T: RefUnwindSafe,
impl<T> Send for NodeEdge<T>where
T: Send,
impl<T> Sync for NodeEdge<T>where
T: Sync,
impl<T> Unpin for NodeEdge<T>where
T: Unpin,
impl<T> UnwindSafe for NodeEdge<T>where
T: 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