pub trait DeleteStyleOps {
// Required method
fn delete_style(
&self,
name: impl Into<String>,
) -> impl Future<Output = Result<()>>;
}Required Methods§
Sourcefn delete_style(
&self,
name: impl Into<String>,
) -> impl Future<Output = Result<()>>
fn delete_style( &self, name: impl Into<String>, ) -> impl Future<Output = Result<()>>
Delete a specific image style from this bucket.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/deletestyle
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.