pub struct CountedList<T: Deserialize>(/* private fields */);
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>
impl<T: Deserialize> Deserialize for CountedList<T>
Auto Trait Implementations§
impl<T> Freeze for CountedList<T>
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more