pub struct ListAllMyBucketsResult {
pub prefix: Option<String>,
pub marker: Option<String>,
pub max_keys: Option<i32>,
pub is_truncated: Option<bool>,
pub next_marker: Option<String>,
pub owner: Owner,
pub buckets: Vec<Bucket>,
}Fields§
§prefix: Option<String>§marker: Option<String>§max_keys: Option<i32>§is_truncated: Option<bool>§next_marker: Option<String>§owner: Owner§buckets: Vec<Bucket>Trait Implementations§
Source§impl Clone for ListAllMyBucketsResult
impl Clone for ListAllMyBucketsResult
Source§fn clone(&self) -> ListAllMyBucketsResult
fn clone(&self) -> ListAllMyBucketsResult
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 ListAllMyBucketsResult
impl Debug for ListAllMyBucketsResult
Source§impl Default for ListAllMyBucketsResult
impl Default for ListAllMyBucketsResult
Source§fn default() -> ListAllMyBucketsResult
fn default() -> ListAllMyBucketsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAllMyBucketsResult
impl<'de> Deserialize<'de> for ListAllMyBucketsResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListAllMyBucketsResult
impl RefUnwindSafe for ListAllMyBucketsResult
impl Send for ListAllMyBucketsResult
impl Sync for ListAllMyBucketsResult
impl Unpin for ListAllMyBucketsResult
impl UnwindSafe for ListAllMyBucketsResult
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