pub trait GetBucketReplicationProgressOps {
// Required method
fn get_bucket_replication_progress(
&self,
rule_id: impl Into<String>,
) -> impl Future<Output = Result<ReplicationProgress>>;
}Required Methods§
Sourcefn get_bucket_replication_progress(
&self,
rule_id: impl Into<String>,
) -> impl Future<Output = Result<ReplicationProgress>>
fn get_bucket_replication_progress( &self, rule_id: impl Into<String>, ) -> impl Future<Output = Result<ReplicationProgress>>
Query the replication progress for a specific rule.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/getbucketreplicationprogress
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.