pub trait PutBucketTransferAccelerationOps {
// Required method
fn put_bucket_transfer_acceleration(
&self,
enabled: bool,
) -> impl Future<Output = Result<()>>;
}Required Methods§
Sourcefn put_bucket_transfer_acceleration(
&self,
enabled: bool,
) -> impl Future<Output = Result<()>>
fn put_bucket_transfer_acceleration( &self, enabled: bool, ) -> impl Future<Output = Result<()>>
Enable / disable transfer acceleration for the bucket.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/putbuckettransferacceleration
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.