[][src]Struct cranelift_codegen_meta::cdsl::recipes::Stack

pub(crate) struct Stack {
    pub regclass: RegClassIndex,
}

An operand that must be in a stack slot.

A Stack object can be used to indicate an operand constraint for a value operand that must live in a stack slot.

Fields

regclass: RegClassIndex

Methods

impl Stack[src]

pub fn new(regclass: RegClassIndex) -> Self[src]

pub fn stack_base_mask(self) -> &'static str[src]

Trait Implementations

impl Clone for Stack[src]

impl Copy for Stack[src]

impl Hash for Stack[src]

impl Into<OperandConstraint> for Stack[src]

impl PartialEq<Stack> for Stack[src]

impl StructuralPartialEq for Stack[src]

Auto Trait Implementations

impl RefUnwindSafe for Stack

impl Send for Stack

impl Sync for Stack

impl Unpin for Stack

impl UnwindSafe for Stack

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.