pub trait S3Folder: Debug {
    // Required method
    fn next_object<'life0, 'async_trait>(
&'life0 mut self
) -> Pin<Box<dyn Future<Output = Result<Option<S3Object>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait
; }

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl S3Folder for ReadDir

source§

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

Implementors§