[][src]Struct susy_wasm::elements::ImportEntry

pub struct ImportEntry { /* fields omitted */ }

Import entry.

Methods

impl ImportEntry[src]

pub fn new(module_str: String, field_str: String, external: External) -> Self[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 Serialize for ImportEntry[src]

type Error = Error

Serialization error produced by serialization routine.

impl PartialEq<ImportEntry> for ImportEntry[src]

impl Clone for ImportEntry[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ImportEntry[src]

Auto Trait Implementations

impl Send for ImportEntry

impl Sync for ImportEntry

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]