pub struct ContextAccumulatorSnapshot {
pub context_id: &'static str,
pub state: Matrix3,
pub state_hash: u64,
pub update_count: u64,
pub last_update_unix_ms: u64,
}Expand description
Value-bearing snapshot used to prove inactive contexts remain byte-equal.
Fields§
§context_id: &'static str§state: Matrix3§state_hash: u64§update_count: u64§last_update_unix_ms: u64Trait Implementations§
Source§impl Clone for ContextAccumulatorSnapshot
impl Clone for ContextAccumulatorSnapshot
Source§fn clone(&self) -> ContextAccumulatorSnapshot
fn clone(&self) -> ContextAccumulatorSnapshot
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 moreimpl Copy for ContextAccumulatorSnapshot
Source§impl Debug for ContextAccumulatorSnapshot
impl Debug for ContextAccumulatorSnapshot
Source§impl PartialEq for ContextAccumulatorSnapshot
impl PartialEq for ContextAccumulatorSnapshot
Source§fn eq(&self, other: &ContextAccumulatorSnapshot) -> bool
fn eq(&self, other: &ContextAccumulatorSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ContextAccumulatorSnapshot
Auto Trait Implementations§
impl Freeze for ContextAccumulatorSnapshot
impl RefUnwindSafe for ContextAccumulatorSnapshot
impl Send for ContextAccumulatorSnapshot
impl Sync for ContextAccumulatorSnapshot
impl Unpin for ContextAccumulatorSnapshot
impl UnsafeUnpin for ContextAccumulatorSnapshot
impl UnwindSafe for ContextAccumulatorSnapshot
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