Struct parity_wasm::builder::FuncBodyBuilder [−][src]
pub struct FuncBodyBuilder<F = Identity> { /* fields omitted */ }
Function body (code) builder
Implementations
impl<F> FuncBodyBuilder<F>
[src]
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]
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> RefUnwindSafe for FuncBodyBuilder<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for FuncBodyBuilder<F> where
F: Send,
F: Send,
impl<F> Sync for FuncBodyBuilder<F> where
F: Sync,
F: Sync,
impl<F> Unpin for FuncBodyBuilder<F> where
F: Unpin,
F: Unpin,
impl<F> UnwindSafe for FuncBodyBuilder<F> where
F: UnwindSafe,
F: UnwindSafe,