[][src]Struct wasmbin::sections::NameAssoc

pub struct NameAssoc<I, V> {
    pub index: I,
    pub value: V,
}

Fields

index: Ivalue: V

Trait Implementations

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

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

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

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

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

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

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

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

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

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

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

impl<I, V> WasmbinCountable for NameAssoc<I, V>[src]

Auto Trait Implementations

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

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

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

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

impl<I, V> UnwindSafe for NameAssoc<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.