pub struct MultipartUploadListResult {
pub uploads: Vec<MultipartUpload>,
pub common_prefixes: Vec<String>,
pub truncated: bool,
pub next_key_marker: Option<String>,
pub next_upload_id_marker: Option<String>,
}Expand description
Result of one incomplete multipart upload listing page.
Fields§
§uploads: Vec<MultipartUpload>Uploads returned on this page.
common_prefixes: Vec<String>Grouped prefixes returned when a delimiter was supplied.
truncated: boolWhether another page is available.
next_key_marker: Option<String>Key marker for the next page.
next_upload_id_marker: Option<String>Upload ID marker for the next page.
Trait Implementations§
Source§impl Clone for MultipartUploadListResult
impl Clone for MultipartUploadListResult
Source§fn clone(&self) -> MultipartUploadListResult
fn clone(&self) -> MultipartUploadListResult
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 MultipartUploadListResult
impl Debug for MultipartUploadListResult
Source§impl<'de> Deserialize<'de> for MultipartUploadListResult
impl<'de> Deserialize<'de> for MultipartUploadListResult
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
impl Eq for MultipartUploadListResult
impl StructuralPartialEq for MultipartUploadListResult
Auto Trait Implementations§
impl Freeze for MultipartUploadListResult
impl RefUnwindSafe for MultipartUploadListResult
impl Send for MultipartUploadListResult
impl Sync for MultipartUploadListResult
impl Unpin for MultipartUploadListResult
impl UnsafeUnpin for MultipartUploadListResult
impl UnwindSafe for MultipartUploadListResult
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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