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