Struct fuel_asm::RegId

source ·
pub struct RegId(_);
Expand description

Represents a 6-bit register ID, guaranteed to be masked by construction.

Implementations§

source§

impl RegId

source

pub const ZERO: Self = _

Contains zero (0), for convenience.

source

pub const ONE: Self = _

Contains one (1), for convenience.

source

pub const OF: Self = _

Contains overflow/underflow of addition, subtraction, and multiplication.

source

pub const PC: Self = _

The program counter. Memory address of the current instruction.

source

pub const SSP: Self = _

Stack start pointer. Memory address of bottom of current writable stack area.

source

pub const SP: Self = _

Stack pointer. Memory address on top of current writable stack area (points to free memory).

source

pub const FP: Self = _

Frame pointer. Memory address of beginning of current call frame.

source

pub const HP: Self = _

Heap pointer. Memory address below the current bottom of the heap (points to free memory).

source

pub const ERR: Self = _

Error codes for particular operations.

source

pub const GGAS: Self = _

Remaining gas globally.

source

pub const CGAS: Self = _

Remaining gas in the context.

source

pub const BAL: Self = _

Received balance for this context.

source

pub const IS: Self = _

Instructions start. Pointer to the start of the currently-executing code.

source

pub const RET: Self = _

Return value or pointer.

source

pub const RETL: Self = _

Return value length in bytes.

source

pub const FLAG: Self = _

Flags register.

source

pub const WRITABLE: Self = _

Smallest writable register.

source

pub const fn new(u: u8) -> Self

Construct a register ID from the given value.

The given value will be masked to 6 bits.

source

pub fn new_checked(u: u8) -> Option<Self>

Construct a register ID from the given value.

Returns None if the value is outside the 6-bit value range.

source

pub const fn to_u8(self) -> u8

A const alternative to the Into<u8> implementation.

Trait Implementations§

source§

impl CheckRegId for RegId

source§

fn check(self) -> RegId

Convert to a RegId, or panic
source§

impl Clone for RegId

source§

fn clone(&self) -> RegId

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for RegId

source§

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

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

impl From<RegId> for u8

source§

fn from(RegId: RegId) -> Self

Converts to this type from the input type.
source§

impl From<RegId> for usize

source§

fn from(r: RegId) -> usize

Converts to this type from the input type.
source§

impl From<u8> for RegId

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl Hash for RegId

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<T> Index<RegId> for [T]where [T]: Index<usize, Output = T>,

§

type Output = T

The returned type after indexing.
source§

fn index(&self, ix: RegId) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<T> IndexMut<RegId> for [T]where [T]: IndexMut<usize, Output = T>,

source§

fn index_mut(&mut self, ix: RegId) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Ord for RegId

source§

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

This method returns an Ordering between self and other. Read more
1.21.0 · source§

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

Compares and returns the maximum of two values. Read more
1.21.0 · source§

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

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

impl PartialEq<RegId> for RegId

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<RegId> for RegId

source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for RegId

source§

impl Eq for RegId

source§

impl StructuralEq for RegId

source§

impl StructuralPartialEq for RegId

Auto Trait Implementations§

§

impl RefUnwindSafe for RegId

§

impl Send for RegId

§

impl Sync for RegId

§

impl Unpin for RegId

§

impl UnwindSafe for RegId

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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.