Struct mountpoint_s3_client::Checksum
source · pub struct Checksum {
pub checksum_crc32: Option<String>,
pub checksum_crc32c: Option<String>,
pub checksum_sha1: Option<String>,
pub checksum_sha256: Option<String>,
}Expand description
Metadata about object checksum. See https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html for more details.
Fields§
§checksum_crc32: Option<String>Base64-encoded, 32-bit CRC32 checksum of the object
checksum_crc32c: Option<String>Base64-encoded, 32-bit CRC32C checksum of the object
checksum_sha1: Option<String>Base64-encoded, 160-bit SHA-1 digest of the object
checksum_sha256: Option<String>Base64-encoded, 256-bit SHA-256 digest of the object
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Checksum
impl Send for Checksum
impl Sync for Checksum
impl Unpin for Checksum
impl UnwindSafe for Checksum
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