pub trait AsyncSeekForward {
// Required method
fn async_seek_forward<'life0, 'async_trait>(
&'life0 mut self,
offset: u64,
) -> Pin<Box<dyn Future<Output = IOResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}