(
url: &Url,
aws_options: &AwsOptions,
resolve_region: bool,
)
| 61 | } |
| 62 | |
| 63 | pub async fn get_s3_object_store_builder( |
| 64 | url: &Url, |
| 65 | aws_options: &AwsOptions, |
| 66 | resolve_region: bool, |
| 67 | ) -> Result<AmazonS3Builder> { |
| 68 | // Box the inner future to reduce the future size of this async function, |
| 69 | // which is deeply nested in the CLI's async call chain. |
| 70 | Box::pin(get_s3_object_store_builder_inner( |
| 71 | url, |
| 72 | aws_options, |
| 73 | resolve_region, |
| 74 | )) |
| 75 | .await |
| 76 | } |
| 77 | |
| 78 | async fn get_s3_object_store_builder_inner( |
| 79 | url: &Url, |
no test coverage detected
searching dependent graphs…