[][src]Struct parity_wasm::elements::CountedList

pub struct CountedList<T: Deserialize>(_);

List for reading sequence of elements typed T, given they are preceded by length (serialized as VarUint32).

Implementations

impl<T: Deserialize> CountedList<T>[src]

pub fn into_inner(self) -> Vec<T>[src]

Destroy counted list returing inner vector.

Trait Implementations

impl<T: Clone + Deserialize> Clone for CountedList<T>[src]

impl<T: Debug + Deserialize> Debug for CountedList<T>[src]

impl<T: Deserialize> Deserialize for CountedList<T> where
    T::Error: From<Error>, 
[src]

type Error = T::Error

Serialization error produced by deserialization routine.

Auto Trait Implementations

impl<T> RefUnwindSafe for CountedList<T> where
    T: RefUnwindSafe

impl<T> Send for CountedList<T> where
    T: Send

impl<T> Sync for CountedList<T> where
    T: Sync

impl<T> Unpin for CountedList<T> where
    T: Unpin

impl<T> UnwindSafe for CountedList<T> where
    T: 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.