pub enum DatabaseEventStatus {
Saved,
Deleted,
NotExistent,
}
Expand description
Database event status
Variants§
Saved
The event is saved into the database
Deleted
The event is marked as deleted
NotExistent
The event doesn’t exist
Trait Implementations§
Source§impl Clone for DatabaseEventStatus
impl Clone for DatabaseEventStatus
Source§fn clone(&self) -> DatabaseEventStatus
fn clone(&self) -> DatabaseEventStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 DatabaseEventStatus
impl Debug for DatabaseEventStatus
Source§impl Hash for DatabaseEventStatus
impl Hash for DatabaseEventStatus
Source§impl Ord for DatabaseEventStatus
impl Ord for DatabaseEventStatus
Source§fn cmp(&self, other: &DatabaseEventStatus) -> Ordering
fn cmp(&self, other: &DatabaseEventStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DatabaseEventStatus
impl PartialEq for DatabaseEventStatus
Source§impl PartialOrd for DatabaseEventStatus
impl PartialOrd for DatabaseEventStatus
impl Copy for DatabaseEventStatus
impl Eq for DatabaseEventStatus
impl StructuralPartialEq for DatabaseEventStatus
Auto Trait Implementations§
impl Freeze for DatabaseEventStatus
impl RefUnwindSafe for DatabaseEventStatus
impl Send for DatabaseEventStatus
impl Sync for DatabaseEventStatus
impl Unpin for DatabaseEventStatus
impl UnwindSafe for DatabaseEventStatus
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