pub enum RowStatus {
Active,
Deleted,
Archived,
Unknown,
}Expand description
Broad row status.
Variants§
Active
Row is active/current.
Deleted
Row is soft-deleted or removed.
Archived
Row is archived.
Unknown
Status is unknown.
Trait Implementations§
Source§impl Ord for RowStatus
impl Ord for RowStatus
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 PartialOrd for RowStatus
impl PartialOrd for RowStatus
impl Copy for RowStatus
impl Eq for RowStatus
impl StructuralPartialEq for RowStatus
Auto Trait Implementations§
impl Freeze for RowStatus
impl RefUnwindSafe for RowStatus
impl Send for RowStatus
impl Sync for RowStatus
impl Unpin for RowStatus
impl UnsafeUnpin for RowStatus
impl UnwindSafe for RowStatus
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