[][src]Struct bwasm::ImportEntry

pub struct ImportEntry { /* fields omitted */ }

Import entry.

Methods

impl ImportEntry[src]

pub fn new(
    module_str: String,
    field_str: String,
    external: External
) -> ImportEntry
[src]

New import entry.

pub fn module(&self) -> &str[src]

Module reference of the import entry.

pub fn module_mut(&mut self) -> &mut String[src]

Module reference of the import entry (mutable).

pub fn field(&self) -> &str[src]

Field reference of the import entry.

pub fn field_mut(&mut self) -> &mut String[src]

Field reference of the import entry (mutable)

pub fn external(&self) -> &External[src]

Local binidng of the import entry.

pub fn external_mut(&mut self) -> &mut External[src]

Local binidng of the import entry (mutable)

Trait Implementations

impl Deserialize for ImportEntry[src]

type Error = Error

Serialization error produced by deserialization routine.

impl StructuralPartialEq for ImportEntry[src]

impl Clone for ImportEntry[src]

impl Serialize for ImportEntry[src]

type Error = Error

Serialization error produced by serialization routine.

impl PartialEq<ImportEntry> for ImportEntry[src]

impl Debug for ImportEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]