pub struct ListBucketResult {
pub name: String,
pub prefix: Option<String>,
pub marker: Option<String>,
pub delimiter: Option<String>,
pub encoding_type: Option<String>,
pub max_keys: String,
pub is_truncated: String,
pub next_marker: Option<String>,
pub contents: Option<Vec<Content>>,
pub common_prefixes: Option<Vec<CommonPrefixes>>,
pub key_count: Option<usize>,
}
Fields§
§name: String
§prefix: Option<String>
§marker: Option<String>
§delimiter: Option<String>
§encoding_type: Option<String>
§max_keys: String
§is_truncated: String
§next_marker: Option<String>
§contents: Option<Vec<Content>>
§common_prefixes: Option<Vec<CommonPrefixes>>
§key_count: Option<usize>
Trait Implementations§
Source§impl Debug for ListBucketResult
impl Debug for ListBucketResult
Source§impl Default for ListBucketResult
impl Default for ListBucketResult
Source§fn default() -> ListBucketResult
fn default() -> ListBucketResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBucketResult
impl<'de> Deserialize<'de> for ListBucketResult
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 ListBucketResult
impl RefUnwindSafe for ListBucketResult
impl Send for ListBucketResult
impl Sync for ListBucketResult
impl Unpin for ListBucketResult
impl UnwindSafe for ListBucketResult
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