pub struct ListPartsOutput {Show 16 fields
pub abort_date: Option<DateTime<Utc>>,
pub abort_rule_id: Option<String>,
pub bucket: Option<String>,
pub checksum_algorithm: Option<ChecksumAlgorithm>,
pub checksum_type: Option<ChecksumType>,
pub initiator: Option<Initiator>,
pub is_truncated: Option<bool>,
pub key: Option<String>,
pub max_parts: Option<i32>,
pub next_part_number_marker: Option<String>,
pub owner: Option<Owner>,
pub part_number_marker: Option<String>,
pub parts: Vec<Part>,
pub request_charged: Option<RequestCharged>,
pub storage_class: Option<StorageClass>,
pub upload_id: Option<String>,
}Expand description
S3 ListPartsOutput.
Fields§
§abort_date: Option<DateTime<Utc>>HTTP header: x-amz-abort-date.
abort_rule_id: Option<String>HTTP header: x-amz-abort-rule-id.
bucket: Option<String>§checksum_algorithm: Option<ChecksumAlgorithm>§checksum_type: Option<ChecksumType>§initiator: Option<Initiator>§is_truncated: Option<bool>§key: Option<String>§max_parts: Option<i32>§next_part_number_marker: Option<String>§owner: Option<Owner>§part_number_marker: Option<String>§parts: Vec<Part>§request_charged: Option<RequestCharged>HTTP header: x-amz-request-charged.
storage_class: Option<StorageClass>§upload_id: Option<String>Trait Implementations§
Source§impl Clone for ListPartsOutput
impl Clone for ListPartsOutput
Source§fn clone(&self) -> ListPartsOutput
fn clone(&self) -> ListPartsOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 ListPartsOutput
impl Debug for ListPartsOutput
Source§impl Default for ListPartsOutput
impl Default for ListPartsOutput
Source§fn default() -> ListPartsOutput
fn default() -> ListPartsOutput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListPartsOutput
impl RefUnwindSafe for ListPartsOutput
impl Send for ListPartsOutput
impl Sync for ListPartsOutput
impl Unpin for ListPartsOutput
impl UnsafeUnpin for ListPartsOutput
impl UnwindSafe for ListPartsOutput
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