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: 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