1
2
3
4
5
6
7
8

/// Sets the internal position for writing or reading.
pub trait BytesSeek {

	/// Sets the internal position.
	fn seek(&mut self, pos: usize);

}