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