Skip to main content

VecReadable

Trait VecReadable 

Source
pub trait VecReadable: Sized {
    // Required method
    fn read_vec<R: Read + Seek>(
        reader: &mut R,
        count: usize,
    ) -> StreamResult<Self>;
}

Required Methods§

Source

fn read_vec<R: Read + Seek>(reader: &mut R, count: usize) -> StreamResult<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T: ReadableNoOptions> VecReadable for Vec<T>

Source§

fn read_vec<R: Read + Seek>(reader: &mut R, count: usize) -> StreamResult<Self>

Implementors§