Trait esp_idf_hal::io::Seek

source ·
pub trait Seek: ErrorType {
    // Required method
    fn seek(&mut self, pos: SeekFrom) -> Result<u64, Self::Error>;

    // Provided methods
    fn rewind(&mut self) -> Result<(), Self::Error> { ... }
    fn stream_position(&mut self) -> Result<u64, Self::Error> { ... }
}
Expand description

Blocking seek within streams.

This trait is the embedded-io equivalent of [std::io::Seek].

Required Methods§

source

fn seek(&mut self, pos: SeekFrom) -> Result<u64, Self::Error>

Seek to an offset, in bytes, in a stream.

Provided Methods§

source

fn rewind(&mut self) -> Result<(), Self::Error>

Rewind to the beginning of a stream.

source

fn stream_position(&mut self) -> Result<u64, Self::Error>

Returns the current seek position from the start of the stream.

Implementations on Foreign Types§

source§

impl<T> Seek for &mut T
where T: Seek + ?Sized,

source§

fn seek(&mut self, pos: SeekFrom) -> Result<u64, <&mut T as ErrorType>::Error>

Implementors§