pub struct NodeInfo {
pub kind: u16,
pub flags: u32,
pub modifier_flags: u32,
pub pos: u32,
pub end: u32,
pub parent: NodeIndex,
pub id: u32,
}Expand description
Common node information that both arena types can provide. This struct contains the essential fields needed by most consumers.
Fields§
§kind: u16§flags: u32§modifier_flags: u32§pos: u32§end: u32§parent: NodeIndex§id: u32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeInfo
impl RefUnwindSafe for NodeInfo
impl Send for NodeInfo
impl Sync for NodeInfo
impl Unpin for NodeInfo
impl UnsafeUnpin for NodeInfo
impl UnwindSafe for NodeInfo
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