pub enum FrontendListItemState {
Plain,
Pending,
InProgress,
Completed,
}Expand description
Semantic state for one compact list row.
Variants§
Trait Implementations§
Source§impl Clone for FrontendListItemState
impl Clone for FrontendListItemState
Source§fn clone(&self) -> FrontendListItemState
fn clone(&self) -> FrontendListItemState
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 FrontendListItemState
Source§impl Debug for FrontendListItemState
impl Debug for FrontendListItemState
Source§impl<'de> Deserialize<'de> for FrontendListItemState
impl<'de> Deserialize<'de> for FrontendListItemState
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
impl Eq for FrontendListItemState
Source§impl PartialEq for FrontendListItemState
impl PartialEq for FrontendListItemState
Source§impl Serialize for FrontendListItemState
impl Serialize for FrontendListItemState
impl StructuralPartialEq for FrontendListItemState
Auto Trait Implementations§
impl Freeze for FrontendListItemState
impl RefUnwindSafe for FrontendListItemState
impl Send for FrontendListItemState
impl Sync for FrontendListItemState
impl Unpin for FrontendListItemState
impl UnsafeUnpin for FrontendListItemState
impl UnwindSafe for FrontendListItemState
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