pub struct UploadContentClaim {
pub size_bytes: u64,
pub checksum: Checksum,
}Expand description
The size and checksum reported for a complete direct-upload payload.
Fields§
§size_bytes: u64Complete payload size in bytes.
checksum: ChecksumWhole-payload checksum in the algorithm required by this operation.
Trait Implementations§
Source§impl Clone for UploadContentClaim
impl Clone for UploadContentClaim
Source§impl Debug for UploadContentClaim
impl Debug for UploadContentClaim
Source§impl<'de> Deserialize<'de> for UploadContentClaim
impl<'de> Deserialize<'de> for UploadContentClaim
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 UploadContentClaim
Source§impl PartialEq for UploadContentClaim
impl PartialEq for UploadContentClaim
Source§impl Serialize for UploadContentClaim
impl Serialize for UploadContentClaim
impl StructuralPartialEq for UploadContentClaim
Auto Trait Implementations§
impl Freeze for UploadContentClaim
impl RefUnwindSafe for UploadContentClaim
impl Send for UploadContentClaim
impl Sync for UploadContentClaim
impl Unpin for UploadContentClaim
impl UnsafeUnpin for UploadContentClaim
impl UnwindSafe for UploadContentClaim
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