pub trait ServiceAPI {
// Required method
fn list_bucket<S, R>(&self, resources: R) -> Result<ListBuckets, Error>
where S: AsRef<str>,
R: Into<Option<HashMap<S, Option<S>>>>;
}
Required Methods§
fn list_bucket<S, R>(&self, resources: R) -> Result<ListBuckets, Error>
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.