pub enum RawAuditEventKind {
Created,
Updated,
Deleted,
Recovered,
SchemaCreated,
SchemaVerified,
FieldAdded,
DataSeeded,
}Variants§
Created
Updated
Deleted
Recovered
SchemaCreated
Emitted when a new table is created during schema bootstrap.
SchemaVerified
Emitted when an existing table is verified during schema bootstrap.
FieldAdded
Emitted when a new column is added to an existing table (schema migration).
DataSeeded
Emitted when initial seed data is inserted or updated during bootstrap.
Trait Implementations§
Source§impl Clone for RawAuditEventKind
impl Clone for RawAuditEventKind
Source§fn clone(&self) -> RawAuditEventKind
fn clone(&self) -> RawAuditEventKind
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 RawAuditEventKind
Source§impl Debug for RawAuditEventKind
impl Debug for RawAuditEventKind
impl Eq for RawAuditEventKind
Source§impl PartialEq for RawAuditEventKind
impl PartialEq for RawAuditEventKind
Source§fn eq(&self, other: &RawAuditEventKind) -> bool
fn eq(&self, other: &RawAuditEventKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RawAuditEventKind
Auto Trait Implementations§
impl Freeze for RawAuditEventKind
impl RefUnwindSafe for RawAuditEventKind
impl Send for RawAuditEventKind
impl Sync for RawAuditEventKind
impl Unpin for RawAuditEventKind
impl UnsafeUnpin for RawAuditEventKind
impl UnwindSafe for RawAuditEventKind
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