pub struct IntegrityVerificationReport {
pub bucket: String,
pub key: String,
pub version_id: String,
pub checksum_sha256: String,
pub content_length: usize,
pub passed: bool,
}Fields§
§bucket: String§key: String§version_id: String§checksum_sha256: String§content_length: usize§passed: boolTrait Implementations§
Source§impl Clone for IntegrityVerificationReport
impl Clone for IntegrityVerificationReport
Source§fn clone(&self) -> IntegrityVerificationReport
fn clone(&self) -> IntegrityVerificationReport
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 IntegrityVerificationReport
impl Debug for IntegrityVerificationReport
Source§impl PartialEq for IntegrityVerificationReport
impl PartialEq for IntegrityVerificationReport
Source§fn eq(&self, other: &IntegrityVerificationReport) -> bool
fn eq(&self, other: &IntegrityVerificationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IntegrityVerificationReport
impl StructuralPartialEq for IntegrityVerificationReport
Auto Trait Implementations§
impl Freeze for IntegrityVerificationReport
impl RefUnwindSafe for IntegrityVerificationReport
impl Send for IntegrityVerificationReport
impl Sync for IntegrityVerificationReport
impl Unpin for IntegrityVerificationReport
impl UnsafeUnpin for IntegrityVerificationReport
impl UnwindSafe for IntegrityVerificationReport
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