[][src]Struct parity_wasm::builder::FuncBodyBuilder

pub struct FuncBodyBuilder<F = Identity> { /* fields omitted */ }

Function body (code) builder

Methods

impl<F> FuncBodyBuilder<F>[src]

pub fn with_callback(callback: F) -> Self[src]

New body (code) builder given the chain callback

impl<F> FuncBodyBuilder<F> where
    F: Invoke<FuncBody>, 
[src]

pub fn with_func(self, func: FuncBody) -> Self[src]

Set/override entirely with FuncBody struct

pub fn with_locals(self, locals: Vec<Local>) -> Self[src]

Extend function local list with new entries

pub fn with_instructions(self, instructions: Instructions) -> Self[src]

Set code of the function

pub fn build(self) -> F::Result[src]

Finish current builder spawning resulting struct

Auto Trait Implementations

impl<F> Send for FuncBodyBuilder<F> where
    F: Send

impl<F> Sync for FuncBodyBuilder<F> where
    F: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.