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