Trait nue_io::SeekAbsolute [] [src]

pub trait SeekAbsolute {
    fn seek_absolute(&mut self, pos: u64) -> Result<u64>;
}

A limited form of seeking that only seeks to an absolute position from the start.

Required Methods

Seeks to the specified position in the stream.

Returns the new position in the stream.

Implementors