pub struct NodeId(/* private fields */);
Expand description
A node ID stored as u32
.
An index into a Tree
-internal Vec
.
Note that this value should be used with care since roxmltree
doesn’t
check that NodeId
actually belongs to a selected Document
.
So you can end up in a situation, when NodeId
produced by one Document
is used to select a node in another Document
.
Implementations§
Trait Implementations§
source§impl PartialEq for NodeId
impl PartialEq for NodeId
impl Copy for NodeId
impl Eq for NodeId
impl StructuralPartialEq for NodeId
Auto Trait Implementations§
impl Freeze for NodeId
impl RefUnwindSafe for NodeId
impl Send for NodeId
impl Sync for NodeId
impl Unpin for NodeId
impl UnwindSafe for NodeId
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