pub trait PruneAsyncExt {
// Required method
fn object_store_container_prune_async<'life0, 'async_trait, S1, S2, S3>(
&'life0 self,
account: S1,
container: S2,
prefix: Option<S3>,
) -> Pin<Box<dyn Future<Output = Result<(), OpenStackError>> + Send + 'async_trait>>
where S1: 'async_trait + AsRef<str> + Send + Sync,
S2: 'async_trait + AsRef<str> + Send + Sync,
S3: 'async_trait + AsRef<str> + Send + Sync,
Self: 'async_trait,
'life0: 'async_trait;
}Required Methods§
fn object_store_container_prune_async<'life0, 'async_trait, S1, S2, S3>( &'life0 self, account: S1, container: S2, prefix: Option<S3>, ) -> Pin<Box<dyn Future<Output = Result<(), OpenStackError>> + Send + 'async_trait>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.