#[repr(u16)]pub enum AuditEventType {
DatabaseCreated = 1,
DatabaseOpened = 2,
DatabaseClosed = 3,
PassphraseChanged = 4,
KeyBackupExported = 5,
BackupCreated = 6,
CompactionPerformed = 7,
IntegrityCheckPerformed = 8,
}Variants§
DatabaseCreated = 1
DatabaseOpened = 2
DatabaseClosed = 3
PassphraseChanged = 4
KeyBackupExported = 5
BackupCreated = 6
CompactionPerformed = 7
IntegrityCheckPerformed = 8
Trait Implementations§
Source§impl Clone for AuditEventType
impl Clone for AuditEventType
Source§fn clone(&self) -> AuditEventType
fn clone(&self) -> AuditEventType
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 AuditEventType
Source§impl Debug for AuditEventType
impl Debug for AuditEventType
impl Eq for AuditEventType
Source§impl PartialEq for AuditEventType
impl PartialEq for AuditEventType
Source§fn eq(&self, other: &AuditEventType) -> bool
fn eq(&self, other: &AuditEventType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuditEventType
Auto Trait Implementations§
impl Freeze for AuditEventType
impl RefUnwindSafe for AuditEventType
impl Send for AuditEventType
impl Sync for AuditEventType
impl Unpin for AuditEventType
impl UnsafeUnpin for AuditEventType
impl UnwindSafe for AuditEventType
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