pub struct CompletedPart {
pub checksum_crc32: Option<String>,
pub checksum_crc32c: Option<String>,
pub checksum_crc64nvme: Option<String>,
pub checksum_sha1: Option<String>,
pub checksum_sha256: Option<String>,
pub e_tag: Option<String>,
pub part_number: Option<i32>,
}Expand description
S3 CompletedPart.
Fields§
§checksum_crc32: Option<String>§checksum_crc32c: Option<String>§checksum_crc64nvme: Option<String>§checksum_sha1: Option<String>§checksum_sha256: Option<String>§e_tag: Option<String>§part_number: Option<i32>Trait Implementations§
Source§impl Clone for CompletedPart
impl Clone for CompletedPart
Source§fn clone(&self) -> CompletedPart
fn clone(&self) -> CompletedPart
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 CompletedPart
impl Debug for CompletedPart
Source§impl Default for CompletedPart
impl Default for CompletedPart
Source§fn default() -> CompletedPart
fn default() -> CompletedPart
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CompletedPart
impl RefUnwindSafe for CompletedPart
impl Send for CompletedPart
impl Sync for CompletedPart
impl Unpin for CompletedPart
impl UnsafeUnpin for CompletedPart
impl UnwindSafe for CompletedPart
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