pub trait S3RequestData {
type ResponseType;
// Required method
fn into_builder(
&self,
access_key: &str,
secret_key: &str,
region: &str,
endpoint: &str,
) -> Result<S3RequestBuilder<Self::ResponseType>>
where <Self as S3RequestData>::ResponseType: S3ResponseData;
}Required Associated Types§
type ResponseType
Required Methods§
Sourcefn into_builder(
&self,
access_key: &str,
secret_key: &str,
region: &str,
endpoint: &str,
) -> Result<S3RequestBuilder<Self::ResponseType>>
fn into_builder( &self, access_key: &str, secret_key: &str, region: &str, endpoint: &str, ) -> Result<S3RequestBuilder<Self::ResponseType>>
Creates an S3RequestBuilder from the S3RequestData object