Struct mountpoint_s3_client::ObjectPart
source · pub struct ObjectPart {
pub checksum: Option<Checksum>,
pub part_number: usize,
pub size: usize,
}Expand description
Metadata for an individual object part. See https://docs.aws.amazon.com/AmazonS3/latest/API/API_ObjectPart.html for more details.
Fields§
§checksum: Option<Checksum>Checksum of the object
part_number: usizeNumber of the part, this value is a positive integer between 1 and 10,000
size: usizeTrait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ObjectPart
impl Send for ObjectPart
impl Sync for ObjectPart
impl Unpin 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