Trait 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