Skip to main content

CNode

Struct CNode 

Source
pub struct CNode {
    pub id: u32,
    pub op: COp,
}
Expand description

A slot-resolved node with its compile-assigned identity: id is the node’s pre-order position across the whole body, indexing the program’s paths table so execution tracing can address the node the way the world checker’s faults do.

Fields§

§id: u32

Pre-order position across the body, and index into Program::paths.

§op: COp

What the node does.

Trait Implementations§

Source§

impl Debug for CNode

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for CNode

§

impl RefUnwindSafe for CNode

§

impl Send for CNode

§

impl Sync for CNode

§

impl Unpin for CNode

§

impl UnsafeUnpin for CNode

§

impl UnwindSafe for CNode

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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<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.