Struct parity_wasm::builder::FunctionBuilder [−][src]
pub struct FunctionBuilder<F = Identity> { /* fields omitted */ }
Function definition builder
Implementations
impl<F> FunctionBuilder<F> where
F: Invoke<FunctionDefinition>,
[src]
impl<F> FunctionBuilder<F> where
F: Invoke<FunctionDefinition>,
[src]pub fn with_callback(callback: F) -> Self
[src]
New function builder with chained callback
pub fn main(self) -> Self
[src]
Set that this function is main entry point
pub fn signature(self) -> SignatureBuilder<Self>
[src]
Start signature builder of the function
pub fn with_signature(self, signature: Signature) -> Self
[src]
Override current signature entirely with new one from known struct
pub fn body(self) -> FuncBodyBuilder<Self>
[src]
Start code (body) builder
pub fn with_body(self, body: FuncBody) -> Self
[src]
Set body (code) for this function
pub fn build(self) -> F::Result
[src]
Finalize current builder spawning resulting struct in the callback
Auto Trait Implementations
impl<F> RefUnwindSafe for FunctionBuilder<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for FunctionBuilder<F> where
F: Send,
F: Send,
impl<F> Sync for FunctionBuilder<F> where
F: Sync,
F: Sync,
impl<F> Unpin for FunctionBuilder<F> where
F: Unpin,
F: Unpin,
impl<F> UnwindSafe for FunctionBuilder<F> where
F: UnwindSafe,
F: UnwindSafe,