Enum cranelift_codegen::machinst::abi_impl::ABIArg[][src]

pub enum ABIArg {
    Reg(ValueRegs<RealReg>, TypeArgumentExtensionArgumentPurpose),
    Stack(i64TypeArgumentExtensionArgumentPurpose),
}

A location for an argument or return value.

Variants

Reg(ValueRegs<RealReg>, TypeArgumentExtensionArgumentPurpose)

In a real register (or set of registers).

Stack(i64TypeArgumentExtensionArgumentPurpose)

Arguments only: on stack, at given offset from SP at entry.

Trait Implementations

impl Clone for ABIArg[src]

impl Copy for ABIArg[src]

impl Debug for ABIArg[src]

Auto Trait Implementations

impl RefUnwindSafe for ABIArg

impl Send for ABIArg

impl Sync for ABIArg

impl Unpin for ABIArg

impl UnwindSafe for ABIArg

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.