Trait bigtools::utils::file::tell::Tell

source ·
pub trait Tell {
    // Required method
    fn tell(&mut self) -> Result<u64>;
}

Required Methods§

source

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

Gets the current position

Implementors§

source§

impl<S: Seek> Tell for S