pub enum AuditEvent {
InputChanged(NodeId),
InputUnchanged(NodeId),
DerivedChanged(NodeId),
CollectionChanged(NodeId),
ScopeCreated(ScopeId),
ScopeClosed(ScopeId),
NodeCreated(NodeId),
NodeAttached {
node: NodeId,
scope: ScopeId,
},
}Expand description
Deterministic transaction event emitted in the audit log.
Variants§
InputChanged(NodeId)
An input value changed or was configured to count as changed.
InputUnchanged(NodeId)
An equal input write was skipped by transaction options.
DerivedChanged(NodeId)
A derived value changed.
CollectionChanged(NodeId)
A collection value changed and produced a structural diff.
ScopeCreated(ScopeId)
A scope was created.
ScopeClosed(ScopeId)
A scope was closed.
NodeCreated(NodeId)
A node was created.
NodeAttached
A node was attached to a scope.
Trait Implementations§
Source§impl Clone for AuditEvent
impl Clone for AuditEvent
Source§fn clone(&self) -> AuditEvent
fn clone(&self) -> AuditEvent
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 AuditEvent
Source§impl Debug for AuditEvent
impl Debug for AuditEvent
impl Eq for AuditEvent
Source§impl PartialEq for AuditEvent
impl PartialEq for AuditEvent
Source§fn eq(&self, other: &AuditEvent) -> bool
fn eq(&self, other: &AuditEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuditEvent
Auto Trait Implementations§
impl Freeze for AuditEvent
impl RefUnwindSafe for AuditEvent
impl Send for AuditEvent
impl Sync for AuditEvent
impl Unpin for AuditEvent
impl UnsafeUnpin for AuditEvent
impl UnwindSafe for AuditEvent
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