[][src]Enum regalloc::InstIx

pub enum InstIx {
    InstIx(u32),
}

Variants

InstIx(u32)

Implementations

impl InstIx[src]

pub fn new(n: u32) -> Self[src]

pub const fn max_value() -> Self[src]

pub const fn min_value() -> Self[src]

pub const fn invalid_value() -> Self[src]

pub fn is_valid(self) -> bool[src]

pub fn is_invalid(self) -> bool[src]

pub fn get(self) -> u32[src]

pub fn plus(self, delta: u32) -> InstIx[src]

pub fn minus(self, delta: u32) -> InstIx[src]

pub fn dotdot(&self, last_plus1: InstIx) -> Range<InstIx>[src]

Trait Implementations

impl Clone for InstIx[src]

impl Copy for InstIx[src]

impl Debug for InstIx[src]

impl Eq for InstIx[src]

impl Hash for InstIx[src]

impl Into<u32> for InstIx[src]

impl Ord for InstIx[src]

impl PartialEq<InstIx> for InstIx[src]

impl PartialOrd<InstIx> for InstIx[src]

impl StructuralEq for InstIx[src]

impl StructuralPartialEq for InstIx[src]

Auto Trait Implementations

impl RefUnwindSafe for InstIx

impl Send for InstIx

impl Sync for InstIx

impl Unpin for InstIx

impl UnwindSafe for InstIx

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.