pub struct CompletedUploadPart {
pub part_number: u32,
pub etag: String,
pub crc64nvme: String,
}Expand description
One uploaded part, as the client observed the provider accept it.
The server keeps no durable record of any part. Part bookkeeping is the client’s, exactly as it is in the provider’s own multipart API, and this is where the client hands it back.
Fields§
§part_number: u32One-based part number.
etag: StringEntity tag the provider returned for the accepted part.
crc64nvme: StringCRC-64/NVME the part was signed and accepted with, lowercase hex.
Trait Implementations§
Source§impl Clone for CompletedUploadPart
impl Clone for CompletedUploadPart
Source§fn clone(&self) -> CompletedUploadPart
fn clone(&self) -> CompletedUploadPart
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 CompletedUploadPart
impl Debug for CompletedUploadPart
Source§impl<'de> Deserialize<'de> for CompletedUploadPart
impl<'de> Deserialize<'de> for CompletedUploadPart
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CompletedUploadPart
Source§impl PartialEq for CompletedUploadPart
impl PartialEq for CompletedUploadPart
Source§impl Serialize for CompletedUploadPart
impl Serialize for CompletedUploadPart
impl StructuralPartialEq for CompletedUploadPart
Auto Trait Implementations§
impl Freeze for CompletedUploadPart
impl RefUnwindSafe for CompletedUploadPart
impl Send for CompletedUploadPart
impl Sync for CompletedUploadPart
impl Unpin for CompletedUploadPart
impl UnsafeUnpin for CompletedUploadPart
impl UnwindSafe for CompletedUploadPart
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