Struct parity_wasm::elements::CountedList
source · pub struct CountedList<T: Deserialize>(_);
Expand description
List for reading sequence of elements typed T
, given
they are preceded by length (serialized as VarUint32).
Implementations§
source§impl<T: Deserialize> CountedList<T>
impl<T: Deserialize> CountedList<T>
sourcepub fn into_inner(self) -> Vec<T>
pub fn into_inner(self) -> Vec<T>
Destroy counted list returing inner vector.
Trait Implementations§
source§impl<T: Clone + Deserialize> Clone for CountedList<T>
impl<T: Clone + Deserialize> Clone for CountedList<T>
source§fn clone(&self) -> CountedList<T>
fn clone(&self) -> CountedList<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug + Deserialize> Debug for CountedList<T>
impl<T: Debug + Deserialize> Debug for CountedList<T>
source§impl<T: Deserialize> Deserialize for CountedList<T>where
T::Error: From<Error>,
impl<T: Deserialize> Deserialize for CountedList<T>where
T::Error: From<Error>,
§type Error = <T as Deserialize>::Error
type Error = <T as Deserialize>::Error
Serialization error produced by deserialization routine.