pub trait AsyncSeekForwardExt: AsyncSeekForward {
// Provided method
fn seek_forward(&mut self, offset: u64) -> SeekForwardFuture<'_, Self> ⓘ
where Self: Unpin { ... }
}
Expand description
Extension trait for AsyncSeekForward
.
Provided Methods§
sourcefn seek_forward(&mut self, offset: u64) -> SeekForwardFuture<'_, Self> ⓘwhere
Self: Unpin,
fn seek_forward(&mut self, offset: u64) -> SeekForwardFuture<'_, Self> ⓘwhere
Self: Unpin,
Seek by the provided offset
in the forwards direction, using the AsyncSeekForward
trait.
Object Safety§
This trait is not object safe.