pub struct IrNodeV0 {Show 13 fields
pub node_id: IrNodeIdV0,
pub kind: IrNodeKindV0,
pub parent: Option<IrNodeIdV0>,
pub children: Vec<IrNodeIdV0>,
pub source_span_start: usize,
pub source_span_end: usize,
pub origin_index: usize,
pub global_order: usize,
pub dirty: bool,
pub deleted: bool,
pub canonical_text: Option<String>,
pub block_span: Option<IrBlockSpanV0>,
pub owner_block_span: Option<IrBlockSpanV0>,
}Fields§
§node_id: IrNodeIdV0§kind: IrNodeKindV0§parent: Option<IrNodeIdV0>§children: Vec<IrNodeIdV0>§source_span_start: usize§source_span_end: usize§origin_index: usize§global_order: usize§dirty: bool§deleted: bool§canonical_text: Option<String>§block_span: Option<IrBlockSpanV0>§owner_block_span: Option<IrBlockSpanV0>Implementations§
Trait Implementations§
impl Eq for IrNodeV0
impl StructuralPartialEq for IrNodeV0
Auto Trait Implementations§
impl Freeze for IrNodeV0
impl RefUnwindSafe for IrNodeV0
impl Send for IrNodeV0
impl Sync for IrNodeV0
impl Unpin for IrNodeV0
impl UnsafeUnpin for IrNodeV0
impl UnwindSafe for IrNodeV0
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.