[][src]Function s3_algo::s3_list_objects

pub fn s3_list_objects<C, F>(
    s3: C,
    bucket: String,
    request_factory: F
) -> ListObjects<C, impl Stream<Item = ListObjectsV2Result> + Sized + Send> where
    C: S3 + Clone + Send + Sync,
    F: Fn() -> ListObjectsV2Request + Send + Sync + Clone

List all objects given a request factory. Paging is taken care of, so you need not fill in continuation_token in the ListObjectsV2Request.

bucket is only needed for eventual further operations on ListObjects.