[][src]Struct parity_wasm::elements::FunctionSection

pub struct FunctionSection(_);

Section with function signatures definition.

Implementations

impl FunctionSection[src]

pub fn with_entries(entries: Vec<Func>) -> Self[src]

New function signatures section with provided entries.

pub fn entries_mut(&mut self) -> &mut Vec<Func>[src]

List of all functions in the section, mutable.

pub fn entries(&self) -> &[Func][src]

List of all functions in the section.

Trait Implementations

impl Clone for FunctionSection[src]

impl Debug for FunctionSection[src]

impl Default for FunctionSection[src]

impl Deserialize for FunctionSection[src]

type Error = Error

Serialization error produced by deserialization routine.

impl PartialEq<FunctionSection> for FunctionSection[src]

impl Serialize for FunctionSection[src]

type Error = Error

Serialization error produced by serialization routine.

impl StructuralPartialEq for FunctionSection[src]

Auto Trait Implementations

impl RefUnwindSafe for FunctionSection

impl Send for FunctionSection

impl Sync for FunctionSection

impl Unpin for FunctionSection

impl UnwindSafe for FunctionSection

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.