Trait ServiceAPI

Source
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§

Source

fn list_bucket<S, R>(&self, resources: R) -> Result<ListBuckets, Error>
where S: AsRef<str>, R: Into<Option<HashMap<S, Option<S>>>>,

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.

Implementors§

Source§

impl<'a> ServiceAPI for OSS<'a>