Struct debugserver_types::Checksum
[−]
[src]
pub struct Checksum {
pub algorithm: ChecksumAlgorithm,
pub checksum: String,
}The checksum of an item calculated by the specified algorithm.
Fields
algorithm: ChecksumAlgorithm
The algorithm used to calculate this checksum.
checksum: String
Value of the checksum.
Trait Implementations
impl Clone for Checksum[src]
fn clone(&self) -> Checksum
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for Checksum[src]
fn eq(&self, __arg_0: &Checksum) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Checksum) -> bool
This method tests for !=.