pub trait ExtendBucketWormOps {
// Required method
fn extend_bucket_worm(
&self,
worm_id: impl Into<String>,
retention_period_in_days: u32,
) -> impl Future<Output = Result<()>>;
}Required Methods§
Sourcefn extend_bucket_worm(
&self,
worm_id: impl Into<String>,
retention_period_in_days: u32,
) -> impl Future<Output = Result<()>>
fn extend_bucket_worm( &self, worm_id: impl Into<String>, retention_period_in_days: u32, ) -> impl Future<Output = Result<()>>
Extend the retention period of a locked retention policy.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/extendbucketworm
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.