[][src]Struct parity_wasm::elements::FuncBody

pub struct FuncBody { /* fields omitted */ }

Function body definition.

Implementations

impl FuncBody[src]

pub fn new(locals: Vec<Local>, instructions: Instructions) -> Self[src]

New function body with given locals and instructions.

pub fn empty() -> Self[src]

List of individual instructions.

pub fn locals(&self) -> &[Local][src]

Locals declared in function body.

pub fn code(&self) -> &Instructions[src]

Instruction list of the function body. Minimal instruction list

is just &[Instruction::End]

pub fn locals_mut(&mut self) -> &mut Vec<Local>[src]

Locals declared in function body (mutable).

pub fn code_mut(&mut self) -> &mut Instructions[src]

Instruction list of the function body (mutable).

Trait Implementations

impl Clone for FuncBody[src]

impl Debug for FuncBody[src]

impl Deserialize for FuncBody[src]

type Error = Error

Serialization error produced by deserialization routine.

impl PartialEq<FuncBody> for FuncBody[src]

impl Serialize for FuncBody[src]

type Error = Error

Serialization error produced by serialization routine.

impl StructuralPartialEq for FuncBody[src]

Auto Trait Implementations

impl RefUnwindSafe for FuncBody

impl Send for FuncBody

impl Sync for FuncBody

impl Unpin for FuncBody

impl UnwindSafe for FuncBody

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.