pub struct TamperProofEntry {
pub sequence: u64,
pub timestamp: DateTime<Utc>,
pub event_type: String,
pub payload_hex: String,
pub prev_hash_hex: String,
pub entry_hash_hex: String,
}Fields§
§sequence: u64§timestamp: DateTime<Utc>§event_type: String§payload_hex: String§prev_hash_hex: String§entry_hash_hex: StringTrait Implementations§
Source§impl Clone for TamperProofEntry
impl Clone for TamperProofEntry
Source§fn clone(&self) -> TamperProofEntry
fn clone(&self) -> TamperProofEntry
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 TamperProofEntry
impl Debug for TamperProofEntry
Source§impl<'de> Deserialize<'de> for TamperProofEntry
impl<'de> Deserialize<'de> for TamperProofEntry
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
Auto Trait Implementations§
impl Freeze for TamperProofEntry
impl RefUnwindSafe for TamperProofEntry
impl Send for TamperProofEntry
impl Sync for TamperProofEntry
impl Unpin for TamperProofEntry
impl UnsafeUnpin for TamperProofEntry
impl UnwindSafe for TamperProofEntry
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