pub struct ObjectPart {
pub checksum: Option<Checksum>,
pub part_number: usize,
pub size: usize,
}Expand description
Metadata for an individual object part.
See ObjectPart in the Amazon S3 API Reference 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: usizeSize of the part in bytes
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ObjectPart
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