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>>>>,

Implementors§

source§

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