pub struct Node {
pub content: NodeValue,
pub extensions: Map<Identifier, NodeId>,
}Expand description
A node in the Eure document.
This does not implement PartialEq since content may refer to other nodes, and so equality is not well-defined.
Fields§
§content: NodeValue§extensions: Map<Identifier, NodeId>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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