Trait winstructs::ReadSeek

source ·
pub trait ReadSeek: Read + Seek {
    // Provided method
    fn tell(&mut self) -> Result<u64> { ... }
}

Provided Methods§

source

fn tell(&mut self) -> Result<u64>

Implementors§

source§

impl<T: Read + Seek> ReadSeek for T