pub struct ListObjectsV2Response {
pub contents: Vec<ListObjectsContent>,
pub max_keys: Option<u16>,
pub common_prefixes: Vec<CommonPrefixes>,
pub next_continuation_token: Option<String>,
pub start_after: Option<String>,
pub encoding_type: Option<String>,
}Fields§
§contents: Vec<ListObjectsContent>§max_keys: Option<u16>§common_prefixes: Vec<CommonPrefixes>§next_continuation_token: Option<String>§start_after: Option<String>§encoding_type: Option<String>Trait Implementations§
Source§impl Clone for ListObjectsV2Response
impl Clone for ListObjectsV2Response
Source§fn clone(&self) -> ListObjectsV2Response
fn clone(&self) -> ListObjectsV2Response
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListObjectsV2Response
impl Debug for ListObjectsV2Response
Source§impl<'xml> FromXml<'xml> for ListObjectsV2Response
impl<'xml> FromXml<'xml> for ListObjectsV2Response
Source§type Accumulator = Option<ListObjectsV2Response>
type Accumulator = Option<ListObjectsV2Response>
The accumulator type used during deserialization
Source§fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
Check if an element or attribute matches this type
Source§fn deserialize<'cx>(
into: &mut Self::Accumulator,
field: &'static str,
deserializer: &mut Deserializer<'cx, 'xml>,
) -> Result<(), Error>
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Deserialize from XML into an accumulator
Auto Trait Implementations§
impl Freeze for ListObjectsV2Response
impl RefUnwindSafe for ListObjectsV2Response
impl Send for ListObjectsV2Response
impl Sync for ListObjectsV2Response
impl Unpin for ListObjectsV2Response
impl UnsafeUnpin for ListObjectsV2Response
impl UnwindSafe for ListObjectsV2Response
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