Struct parity_wasm::elements::ImportEntry [−][src]
Import entry.
Implementations
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 Clone for ImportEntry
[src]
fn clone(&self) -> ImportEntry
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ImportEntry
[src]
impl Deserialize for ImportEntry
[src]
type Error = Error
Serialization error produced by deserialization routine.
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, Self::Error>
[src]
impl PartialEq<ImportEntry> for ImportEntry
[src]
fn eq(&self, other: &ImportEntry) -> bool
[src]
fn ne(&self, other: &ImportEntry) -> bool
[src]
impl Serialize for ImportEntry
[src]
type Error = Error
Serialization error produced by serialization routine.
fn serialize<W: Write>(self, writer: &mut W) -> Result<(), Self::Error>
[src]
impl StructuralPartialEq for ImportEntry
[src]
Auto Trait Implementations
impl RefUnwindSafe for ImportEntry
impl Send for ImportEntry
impl Sync for ImportEntry
impl Unpin for ImportEntry
impl UnwindSafe for ImportEntry
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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,