pub struct ListBucketResult {
pub name: String,
pub prefix: Option<String>,
pub delimiter: Option<String>,
pub encoding_type: Option<String>,
pub next_marker: Option<String>,
pub max_keys: String,
pub is_truncated: String,
pub contents: Option<Vec<Content>>,
pub common_prefixes: Option<Vec<CommonPrefixes>>,
}
Fields§
§name: String
§prefix: Option<String>
§delimiter: Option<String>
§encoding_type: Option<String>
§next_marker: Option<String>
§max_keys: String
§is_truncated: String
§contents: Option<Vec<Content>>
§common_prefixes: Option<Vec<CommonPrefixes>>
Trait Implementations§
Source§impl Debug for ListBucketResult
impl Debug for ListBucketResult
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