bevy_asset::io

Trait AsyncSeekForwardExt

Source
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§

Source

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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§