pub trait GetBucketLoggingOps {
// Required method
fn get_bucket_logging(
&self,
) -> impl Future<Output = Result<BucketLoggingStatus>>;
}Required Methods§
Sourcefn get_bucket_logging(
&self,
) -> impl Future<Output = Result<BucketLoggingStatus>>
fn get_bucket_logging( &self, ) -> impl Future<Output = Result<BucketLoggingStatus>>
Query the bucket access-logging configuration.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/getbucketlogging
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.