VWowReaderForChunk

Trait VWowReaderForChunk 

Source
pub trait VWowReaderForChunk<V, T>
where Self: Read + Seek + Sized, V: DataVersion, T: VWowChunkR<V>,
{ // Provided method fn v_wow_read_from_chunk( &mut self, chunk_header: &ChunkHeader, ) -> Result<VersionedChunk<V, T>> { ... } }

Provided Methods§

Source

fn v_wow_read_from_chunk( &mut self, chunk_header: &ChunkHeader, ) -> Result<VersionedChunk<V, T>>

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<V, T, R> VWowReaderForChunk<V, T> for R
where V: DataVersion, T: VWowChunkR<V>, R: Read + Seek,