pub enum RecordStatus {
Active,
Deleted,
Archived,
Unknown,
}Expand description
Broad record status.
Variants§
Active
Record is active/current.
Deleted
Record is soft-deleted or removed.
Archived
Record is archived.
Unknown
Status is unknown.
Trait Implementations§
Source§impl Clone for RecordStatus
impl Clone for RecordStatus
Source§fn clone(&self) -> RecordStatus
fn clone(&self) -> RecordStatus
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 RecordStatus
impl Debug for RecordStatus
Source§impl Default for RecordStatus
impl Default for RecordStatus
Source§fn default() -> RecordStatus
fn default() -> RecordStatus
Returns the “default value” for a type. Read more
Source§impl Hash for RecordStatus
impl Hash for RecordStatus
Source§impl Ord for RecordStatus
impl Ord for RecordStatus
Source§fn cmp(&self, other: &RecordStatus) -> Ordering
fn cmp(&self, other: &RecordStatus) -> Ordering
1.21.0 (const: unstable) · 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 RecordStatus
impl PartialEq for RecordStatus
Source§fn eq(&self, other: &RecordStatus) -> bool
fn eq(&self, other: &RecordStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RecordStatus
impl PartialOrd for RecordStatus
impl Copy for RecordStatus
impl Eq for RecordStatus
impl StructuralPartialEq for RecordStatus
Auto Trait Implementations§
impl Freeze for RecordStatus
impl RefUnwindSafe for RecordStatus
impl Send for RecordStatus
impl Sync for RecordStatus
impl Unpin for RecordStatus
impl UnsafeUnpin for RecordStatus
impl UnwindSafe for RecordStatus
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