pub enum NodeEdge<T> {
Start(T),
End(T),
}
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>
Implementations§
Source§impl<T> NodeEdge<T>
impl<T> NodeEdge<T>
pub fn inner_value(self) -> T
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for NodeEdge<T>where
T: Freeze,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)