Trait VarIntSizedVecWrite

Source
pub trait VarIntSizedVecWrite {
    // Required method
    fn write_var_int_sized_vec<E: Encoder>(
        &mut self,
        vec: &Vec<E>,
    ) -> Result<()>;
}

Required Methods§

Source

fn write_var_int_sized_vec<E: Encoder>(&mut self, vec: &Vec<E>) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<W> VarIntSizedVecWrite for W
where W: Write,