pub struct GetRegionResponse {
pub headers: HeaderMap,
pub region: String,
pub bucket: String,
pub region_response: String,
}
Expand description
Response of get_region() API
Fields§
§headers: HeaderMap
HTTP headers returned by the server, containing metadata such as Content-Type
, ETag
, etc.
region: String
The AWS region where the bucket resides.
bucket: String
Name of the bucket containing the object.
region_response: String
The region response for the bucket.
Trait Implementations§
Source§impl Clone for GetRegionResponse
impl Clone for GetRegionResponse
Source§fn clone(&self) -> GetRegionResponse
fn clone(&self) -> GetRegionResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetRegionResponse
impl Debug for GetRegionResponse
Source§impl FromS3Response for GetRegionResponse
impl FromS3Response for GetRegionResponse
Auto Trait Implementations§
impl Freeze for GetRegionResponse
impl RefUnwindSafe for GetRegionResponse
impl Send for GetRegionResponse
impl Sync for GetRegionResponse
impl Unpin for GetRegionResponse
impl UnwindSafe for GetRegionResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more