pub struct ListResult {
pub objects: Vec<S3Object>,
pub common_prefixes: Vec<String>,
pub is_truncated: bool,
pub next_marker: Option<String>,
}Expand description
Result of a ListObjects / ListObjectsV2 operation.
Fields§
§objects: Vec<S3Object>The objects that match the listing criteria.
common_prefixes: Vec<String>Common prefixes when a delimiter is used.
is_truncated: boolWhether the result is truncated (more keys available).
next_marker: Option<String>The marker to use for the next page (last key returned).
Trait Implementations§
Source§impl Clone for ListResult
impl Clone for ListResult
Source§fn clone(&self) -> ListResult
fn clone(&self) -> ListResult
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 moreAuto Trait Implementations§
impl Freeze for ListResult
impl RefUnwindSafe for ListResult
impl Send for ListResult
impl Sync for ListResult
impl Unpin for ListResult
impl UnsafeUnpin for ListResult
impl UnwindSafe for ListResult
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