pub enum ChainBreak {
TamperedEntry {
index: usize,
event_id: Uuid,
},
BrokenLink {
index: usize,
event_id: Uuid,
},
}Expand description
A detected break in the audit hash chain.
Variants§
TamperedEntry
envelopes[index].entry_hash does not match a recompute of
AuditEnvelope::chain_digest — the envelope’s content was
altered after it was written.
BrokenLink
envelopes[index].prev_hash does not point at the previous
envelope’s entry_hash — an entry was reordered, dropped, or
inserted.
Trait Implementations§
Source§impl Clone for ChainBreak
impl Clone for ChainBreak
Source§fn clone(&self) -> ChainBreak
fn clone(&self) -> ChainBreak
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 ChainBreak
impl Debug for ChainBreak
impl Eq for ChainBreak
Source§impl PartialEq for ChainBreak
impl PartialEq for ChainBreak
impl StructuralPartialEq for ChainBreak
Auto Trait Implementations§
impl Freeze for ChainBreak
impl RefUnwindSafe for ChainBreak
impl Send for ChainBreak
impl Sync for ChainBreak
impl Unpin for ChainBreak
impl UnsafeUnpin for ChainBreak
impl UnwindSafe for ChainBreak
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.