Skip to main content

NodeId

Struct NodeId 

Source
pub struct NodeId(/* private fields */);
Expand description

AST Node ID

Implementations§

Source§

impl NodeId

Source

pub const MAX_INDEX: usize

The maximum representable index value.

Source

pub const CHECKS_MAX_INDEX: bool = true

Whether this index type performs bounds checking.

Source

pub const fn new(value: usize) -> Self

Create a new index from a usize value.

§Panics

Panics if value > MAX_INDEX.

Source

pub const fn from_raw(value: NonMaxU32) -> Self

Create an index from a raw NonMaxU32 value.

Source

pub fn from_foreign<F: Idx>(value: F) -> Self

Convert an index from another index type.

Source

pub const unsafe fn from_usize_unchecked(value: usize) -> Self

Create an index from a usize without bounds checking.

§SAFETY

The caller must ensure value < (u32::MAX as usize).

Source

pub const unsafe fn from_raw_unchecked(raw: u32) -> Self

Create an index from a raw u32 without bounds checking.

§SAFETY

The caller must ensure the value is not u32::MAX.

Source

pub const fn from_usize(value: usize) -> Self

Create an index from a usize with bounds checking.

§Panics

Panics if value > MAX_INDEX.

Source

pub const fn index(self) -> usize

Get the index value as a usize.

Source

pub const fn raw(self) -> NonMaxU32

Get the raw NonMaxU32 value.

Source§

impl NodeId

Source

pub const DUMMY: Self

Mock node id.

This is used for synthetically-created AST nodes, among other things.

Source

pub const ROOT: Self

Node id of the Program node.

Trait Implementations§

Source§

impl Add for NodeId

Source§

type Output = NodeId

The resulting type after applying the + operator.
Source§

fn add(self, other: NodeId) -> NodeId

Performs the + operation. Read more
Source§

impl Add<NodeId> for usize

Source§

type Output = NodeId

The resulting type after applying the + operator.
Source§

fn add(self, other: NodeId) -> NodeId

Performs the + operation. Read more
Source§

impl Add<usize> for NodeId

Source§

type Output = NodeId

The resulting type after applying the + operator.
Source§

fn add(self, other: usize) -> Self

Performs the + operation. Read more
Source§

impl AddAssign for NodeId

Source§

fn add_assign(&mut self, other: NodeId)

Performs the += operation. Read more
Source§

impl AddAssign<usize> for NodeId

Source§

fn add_assign(&mut self, other: usize)

Performs the += operation. Read more
Source§

impl Clone for NodeId

Source§

fn clone(&self) -> NodeId

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'alloc> CloneIn<'alloc> for NodeId

Source§

type Cloned = NodeId

The type of the cloned object. Read more
Source§

fn clone_in_impl( &self, with_semantic_ids: CloneInSemanticIds, _: &'alloc Allocator, ) -> Self

Clone self into allocator, threading whether semantic ids should be preserved as a runtime with_semantic_ids flag rather than as two separate methods. Read more
Source§

fn clone_in(&self, allocator: &'new_alloc Allocator) -> Self::Cloned

Clone self into the given allocator. allocator may be the same one that self is already in.
Source§

fn clone_in_with_semantic_ids( &self, allocator: &'new_alloc Allocator, ) -> Self::Cloned

Almost identical as clone_in, but for some special type, it will also clone the semantic ids. Please use this method only if you make sure semantic info is synced with the ast node.
Source§

impl Copy for NodeId

Source§

impl Debug for NodeId

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NodeId

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for NodeId

Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'a> Dummy<'a> for NodeId

Source§

fn dummy(_: &'a Allocator) -> Self

Create a dummy node.
Source§

impl Eq for NodeId

Source§

impl From<NodeId> for usize

Source§

fn from(v: NodeId) -> usize

Converts to this type from the input type.
Source§

impl From<usize> for NodeId

Source§

fn from(value: usize) -> Self

Converts to this type from the input type.
Source§

impl Hash for NodeId

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Idx for NodeId

Source§

const MAX: usize = Self::MAX_INDEX

The maximum value that can be represented by this index type.
Source§

unsafe fn from_usize_unchecked(idx: usize) -> Self

Construct an index from a usize without bounds checking. Read more
Source§

fn index(self) -> usize

Get the underlying index. This is equivalent to Into<usize>
Source§

fn from_usize(idx: usize) -> Self

Construct an Index from a usize. This is equivalent to From<usize>. Read more
Source§

impl Ord for NodeId

Source§

fn cmp(&self, other: &NodeId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

fn clamp_to<R>(self, range: R) -> Self
where Self: Sized, R: ClampBounds<Self>,

🔬This is a nightly-only experimental API. (clamp_to)
Restrict a value to a certain range. Read more
Source§

impl PartialEq for NodeId

Source§

fn eq(&self, other: &NodeId) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<NodeId> for usize

Source§

fn eq(&self, other: &NodeId) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<usize> for NodeId

Source§

fn eq(&self, other: &usize) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for NodeId

Source§

fn partial_cmp(&self, other: &NodeId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<NodeId> for usize

Source§

fn partial_cmp(&self, other: &NodeId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<usize> for NodeId

Source§

fn partial_cmp(&self, other: &usize) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Rem<usize> for NodeId

Source§

type Output = NodeId

The resulting type after applying the % operator.
Source§

fn rem(self, other: usize) -> Self

Performs the % operation. Read more
Source§

impl SemanticId for NodeId

Source§

fn clone_id(&self, with_semantic_ids: CloneInSemanticIds) -> Self

Clone a semantic ID. Read more
Source§

fn clone_cell_option_id( cell: &Cell<Option<Self>>, with_semantic_ids: CloneInSemanticIds, ) -> Cell<Option<Self>>

Clone a Cell<Option<Id>> semantic ID field. Read more
Source§

impl Serialize for NodeId

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for NodeId

Source§

impl Sub for NodeId

Source§

type Output = NodeId

The resulting type after applying the - operator.
Source§

fn sub(self, other: NodeId) -> NodeId

Performs the - operation. Read more
Source§

impl Sub<NodeId> for usize

Source§

type Output = NodeId

The resulting type after applying the - operator.
Source§

fn sub(self, other: NodeId) -> NodeId

Performs the - operation. Read more
Source§

impl Sub<usize> for NodeId

Source§

type Output = NodeId

The resulting type after applying the - operator.
Source§

fn sub(self, other: usize) -> Self

Performs the - operation. Read more
Source§

impl SubAssign for NodeId

Source§

fn sub_assign(&mut self, other: NodeId)

Performs the -= operation. Read more
Source§

impl SubAssign<usize> for NodeId

Source§

fn sub_assign(&mut self, other: usize)

Performs the -= operation. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<'a, T> FromIn<'a, T> for T

Source§

fn from_in(t: T, _: &'a Allocator) -> T

Converts to this type from the input type within the given allocator.
Source§

impl<I, T> IdxSliceIndex<I, T> for I
where I: Idx,

Source§

type Output = T

Source§

fn get( self, slice: &IndexSlice<I, [T]>, ) -> Option<&<I as IdxSliceIndex<I, T>>::Output>

Source§

fn get_mut( self, slice: &mut IndexSlice<I, [T]>, ) -> Option<&mut <I as IdxSliceIndex<I, T>>::Output>

Source§

fn index( self, slice: &IndexSlice<I, [T]>, ) -> &<I as IdxSliceIndex<I, T>>::Output

Source§

fn index_mut( self, slice: &mut IndexSlice<I, [T]>, ) -> &mut <I as IdxSliceIndex<I, T>>::Output

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<'a, T, U> IntoIn<'a, U> for T
where U: FromIn<'a, T>,

Source§

fn into_in(self, allocator: &'a Allocator) -> U

Converts this type into the (usually inferred) input type within the given allocator.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.