pub trait BytesSeek {
    fn position(&self) -> usize;
fn seek(&mut self, pos: usize); fn advance(&mut self, adv: usize) { ... } }
Expand description

Sets the internal position for writing or reading.

Required methods

Returns the internal position.

Sets the internal position.

Provided methods

Advances the internal position.

Panic

May panic depending on the BytesSeek::seek implementation.

Implementors