risingwave_connector::source::filesystem::s3::enumerator

Trait FsListInner

source
pub trait FsListInner: Sized {
    // Required method
    fn get_next_page<'life0, 'async_trait, T>(
        &'life0 mut self,
    ) -> Pin<Box<dyn Future<Output = ConnectorResult<(Vec<T>, bool)>> + Send + 'async_trait>>
       where T: 'async_trait + for<'a> From<&'a Object>,
             Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn get_next_page<'life0, 'async_trait, T>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = ConnectorResult<(Vec<T>, bool)>> + Send + 'async_trait>>
where T: 'async_trait + for<'a> From<&'a Object>, Self: 'async_trait, 'life0: 'async_trait,

Object Safety§

This trait is not object safe.

Implementors§