[−][src]Struct parity_wasm::elements::FuncBody
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][+]
impl PartialEq<FuncBody> for FuncBody[src][+]
impl Serialize for FuncBody[src][+]
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> From<T> for T[src][+]
impl<T, U> Into<U> for T where
U: From<T>, [src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src][+]
U: TryFrom<T>,