pub trait VWowReaderForChunk<V, T>{
// Provided method
fn v_wow_read_from_chunk(
&mut self,
chunk_header: &ChunkHeader,
) -> Result<VersionedChunk<V, T>> { ... }
}Provided Methods§
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.