pub struct OutputAuditContext {
pub key: OutputKey,
pub scope: ScopeId,
pub transaction_id: TransactionId,
pub revision: Revision,
pub kind: OutputFrameKindTrace,
}Expand description
Structural context for an audited output frame assertion.
Fields§
§key: OutputKeyOutput key for the audited frame.
scope: ScopeIdScope associated with the frame.
transaction_id: TransactionIdTransaction that emitted the frame.
revision: RevisionRevision carried by the frame.
kind: OutputFrameKindTraceFrame kind without materialized payload.
Trait Implementations§
Source§impl Clone for OutputAuditContext
impl Clone for OutputAuditContext
Source§fn clone(&self) -> OutputAuditContext
fn clone(&self) -> OutputAuditContext
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 OutputAuditContext
impl Debug for OutputAuditContext
impl Eq for OutputAuditContext
Source§impl PartialEq for OutputAuditContext
impl PartialEq for OutputAuditContext
Source§fn eq(&self, other: &OutputAuditContext) -> bool
fn eq(&self, other: &OutputAuditContext) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OutputAuditContext
Auto Trait Implementations§
impl Freeze for OutputAuditContext
impl RefUnwindSafe for OutputAuditContext
impl Send for OutputAuditContext
impl Sync for OutputAuditContext
impl Unpin for OutputAuditContext
impl UnsafeUnpin for OutputAuditContext
impl UnwindSafe for OutputAuditContext
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