pub trait ReadableWithLength {
    fn read_from_with_length(
        reader: &mut impl Reader,
        length: usize
    ) -> Result<Self, ReadError>
   where
        Self: Sized
; }
Expand description

Reads a list of elements from bytes.

Required Methods

Reads a list of values from a Reader using the given length of the list.

Implementations on Foreign Types

Implementors