[][src]Struct parity_wasm::elements::ImportSection

pub struct ImportSection(_);

Section of the imports definition.

Implementations

impl ImportSection[src]

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

New import section with provided types.

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

List of import entries.

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

List of import entries (mutable).

pub fn functions(&self) -> usize[src]

Returns number of functions.

pub fn globals(&self) -> usize[src]

Returns number of globals

Trait Implementations

impl Clone for ImportSection[src]

impl Debug for ImportSection[src]

impl Default for ImportSection[src]

impl Deserialize for ImportSection[src]

type Error = Error

Serialization error produced by deserialization routine.

impl PartialEq<ImportSection> for ImportSection[src]

impl Serialize for ImportSection[src]

type Error = Error

Serialization error produced by serialization routine.

impl StructuralPartialEq for ImportSection[src]

Auto Trait Implementations

impl RefUnwindSafe for ImportSection

impl Send for ImportSection

impl Sync for ImportSection

impl Unpin for ImportSection

impl UnwindSafe for ImportSection

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.