pub struct WitnessEntry {
pub seq: u64,
pub timestamp_ns: u64,
pub operation: u8,
pub object_id: u64,
pub hash_prefix: [u8; 8],
}Expand description
Witness log entry.
Fields§
§seq: u64Sequence number.
timestamp_ns: u64Timestamp in nanoseconds.
operation: u8Operation type.
object_id: u64Associated object ID.
hash_prefix: [u8; 8]Witness hash (first 8 bytes).
Trait Implementations§
Source§impl Clone for WitnessEntry
impl Clone for WitnessEntry
Source§fn clone(&self) -> WitnessEntry
fn clone(&self) -> WitnessEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WitnessEntry
impl RefUnwindSafe for WitnessEntry
impl Send for WitnessEntry
impl Sync for WitnessEntry
impl Unpin for WitnessEntry
impl UnsafeUnpin for WitnessEntry
impl UnwindSafe for WitnessEntry
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