pub enum TraversalType {
ID(NodeId),
}Expand description
Enumerated the types of tree traversals that one of the DocTree walk methods might perform.
Variants§
ID(NodeId)
Traversal based on node ID. Causes the walker method to look for a specific node with the given ID.
Auto Trait Implementations§
impl Freeze for TraversalType
impl RefUnwindSafe for TraversalType
impl Send for TraversalType
impl Sync for TraversalType
impl Unpin for TraversalType
impl UnwindSafe for TraversalType
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