pub struct ChecksumValue {
pub algorithm: ChecksumAlgorithm,
pub value: String,
}Expand description
A base64-encoded checksum value paired with its algorithm.
Fields§
§algorithm: ChecksumAlgorithmThe algorithm used to compute this checksum.
value: StringThe base64-encoded checksum.
Trait Implementations§
Source§impl Clone for ChecksumValue
impl Clone for ChecksumValue
Source§fn clone(&self) -> ChecksumValue
fn clone(&self) -> ChecksumValue
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 ChecksumValue
impl Debug for ChecksumValue
Source§impl PartialEq for ChecksumValue
impl PartialEq for ChecksumValue
Source§fn eq(&self, other: &ChecksumValue) -> bool
fn eq(&self, other: &ChecksumValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ChecksumValue
impl StructuralPartialEq for ChecksumValue
Auto Trait Implementations§
impl Freeze for ChecksumValue
impl RefUnwindSafe for ChecksumValue
impl Send for ChecksumValue
impl Sync for ChecksumValue
impl Unpin for ChecksumValue
impl UnsafeUnpin for ChecksumValue
impl UnwindSafe for ChecksumValue
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