pub trait FloppyReadDir<'a, Disk: FloppyDisk<'a>>: Debug + Unpin + Send {
    // Required method
    fn next_entry<'life0, 'async_trait>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = Result<Option<Disk::DirEntry>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn next_entry<'life0, 'async_trait>( &'life0 mut self ) -> Pin<Box<dyn Future<Output = Result<Option<Disk::DirEntry>>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§