pub trait GetBucketInventoryOps {
// Required method
fn get_bucket_inventory(
&self,
inventory_id: impl Into<String>,
) -> impl Future<Output = Result<InventoryConfiguration>>;
}Required Methods§
Sourcefn get_bucket_inventory(
&self,
inventory_id: impl Into<String>,
) -> impl Future<Output = Result<InventoryConfiguration>>
fn get_bucket_inventory( &self, inventory_id: impl Into<String>, ) -> impl Future<Output = Result<InventoryConfiguration>>
Retrieve a single inventory rule by ID.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/getbucketinventory
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.