pub struct PartIntegrityRecord {
pub part_number: u16,
pub checksum_sha256: String,
pub size: usize,
}Fields§
§part_number: u16§checksum_sha256: String§size: usizeTrait Implementations§
Source§impl Clone for PartIntegrityRecord
impl Clone for PartIntegrityRecord
Source§fn clone(&self) -> PartIntegrityRecord
fn clone(&self) -> PartIntegrityRecord
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 PartIntegrityRecord
impl Debug for PartIntegrityRecord
Source§impl Default for PartIntegrityRecord
impl Default for PartIntegrityRecord
Source§fn default() -> PartIntegrityRecord
fn default() -> PartIntegrityRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartIntegrityRecord
impl<'de> Deserialize<'de> for PartIntegrityRecord
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
Source§impl PartialEq for PartIntegrityRecord
impl PartialEq for PartIntegrityRecord
Source§fn eq(&self, other: &PartIntegrityRecord) -> bool
fn eq(&self, other: &PartIntegrityRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PartIntegrityRecord
impl Serialize for PartIntegrityRecord
impl Eq for PartIntegrityRecord
impl StructuralPartialEq for PartIntegrityRecord
Auto Trait Implementations§
impl Freeze for PartIntegrityRecord
impl RefUnwindSafe for PartIntegrityRecord
impl Send for PartIntegrityRecord
impl Sync for PartIntegrityRecord
impl Unpin for PartIntegrityRecord
impl UnsafeUnpin for PartIntegrityRecord
impl UnwindSafe for PartIntegrityRecord
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