[][src]Struct wasmbin::sections::NameMap

pub struct NameMap<I, V> {
    pub items: Vec<NameAssoc<I, V>>,
}

Fields

items: Vec<NameAssoc<I, V>>

Trait Implementations

impl<I: Arbitrary, V: Arbitrary> Arbitrary for NameMap<I, V>[src]

impl<I: Clone, V: Clone> Clone for NameMap<I, V>[src]

impl<I: Debug, V: Debug> Debug for NameMap<I, V>[src]

impl<I, V> Decode for NameMap<I, V> where
    Vec<NameAssoc<I, V>>: Decode,
    I: Decode,
    V: Decode
[src]

impl<I, V> Encode for NameMap<I, V> where
    Vec<NameAssoc<I, V>>: Encode,
    I: Encode,
    V: Encode
[src]

impl<I: Eq, V: Eq> Eq for NameMap<I, V>[src]

impl<I: Hash, V: Hash> Hash for NameMap<I, V>[src]

impl<I: PartialEq, V: PartialEq> PartialEq<NameMap<I, V>> for NameMap<I, V>[src]

impl<I, V> StructuralEq for NameMap<I, V>[src]

impl<I, V> StructuralPartialEq for NameMap<I, V>[src]

impl<I, V> Visit for NameMap<I, V> where
    Self: 'static,
    Vec<NameAssoc<I, V>>: Visit,
    I: Visit,
    V: Visit
[src]

Auto Trait Implementations

impl<I, V> RefUnwindSafe for NameMap<I, V> where
    I: RefUnwindSafe,
    V: RefUnwindSafe

impl<I, V> Send for NameMap<I, V> where
    I: Send,
    V: Send

impl<I, V> Sync for NameMap<I, V> where
    I: Sync,
    V: Sync

impl<I, V> Unpin for NameMap<I, V> where
    I: Unpin,
    V: Unpin

impl<I, V> UnwindSafe for NameMap<I, V> where
    I: UnwindSafe,
    V: UnwindSafe

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.