[][src]Struct wasmtime_environ::FrameLayout

pub struct FrameLayout {
    pub call_conv: CallConv,
    pub initial_commands: Box<[FrameLayoutChange]>,
    pub commands: Box<[(usize, FrameLayoutChange)]>,
}

Frame layout information: call convention and registers save/restore commands.

Fields

call_conv: CallConv

Call convention.

initial_commands: Box<[FrameLayoutChange]>

Frame default/initial commands.

commands: Box<[(usize, FrameLayoutChange)]>

Frame commands at specific offset.

Trait Implementations

impl Debug for FrameLayout[src]

impl<'de> Deserialize<'de> for FrameLayout[src]

impl Eq for FrameLayout[src]

impl PartialEq<FrameLayout> for FrameLayout[src]

impl Serialize for FrameLayout[src]

impl StructuralEq for FrameLayout[src]

impl StructuralPartialEq for FrameLayout[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.