pub struct AuditBroken {
pub break_at: usize,
pub expected: String,
pub actual: String,
}Expand description
Audit-chain break details.
Fields§
§break_at: usizeEvent id at which verification failed.
expected: StringHMAC the chain expected at that position.
actual: StringHMAC actually stored at that position.
Auto Trait Implementations§
impl Freeze for AuditBroken
impl RefUnwindSafe for AuditBroken
impl Send for AuditBroken
impl Sync for AuditBroken
impl Unpin for AuditBroken
impl UnsafeUnpin for AuditBroken
impl UnwindSafe for AuditBroken
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