#[repr(i16)]pub enum EntryStatus {
Approved = 0,
Discuss = 1,
OnHold = 2,
}
Expand description
The status of a given Entry
Variants§
Approved = 0
The entry has been approved.
Discuss = 1
The entry is in discussion.
OnHold = 2
The entry is on hold.
Trait Implementations§
Source§impl Clone for EntryStatus
impl Clone for EntryStatus
Source§fn clone(&self) -> EntryStatus
fn clone(&self) -> EntryStatus
Returns a copy 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 EntryStatus
impl Debug for EntryStatus
Source§impl<'de> Deserialize<'de> for EntryStatus
impl<'de> Deserialize<'de> for EntryStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for EntryStatus
impl Ord for EntryStatus
Source§fn cmp(&self, other: &EntryStatus) -> Ordering
fn cmp(&self, other: &EntryStatus) -> 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 EntryStatus
impl PartialEq for EntryStatus
Source§impl PartialOrd for EntryStatus
impl PartialOrd for EntryStatus
Source§impl Serialize for EntryStatus
impl Serialize for EntryStatus
impl Copy for EntryStatus
impl Eq for EntryStatus
impl StructuralPartialEq for EntryStatus
Auto Trait Implementations§
impl Freeze for EntryStatus
impl RefUnwindSafe for EntryStatus
impl Send for EntryStatus
impl Sync for EntryStatus
impl Unpin for EntryStatus
impl UnwindSafe for EntryStatus
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