pub enum CardState {
Todo,
InProgress,
InReview,
Done,
Archived,
}Expand description
Card workflow state.
These states represent the card’s position in a typical workflow. UI layers may map these to column positions or visual indicators.
Variants§
Todo
Card is waiting to be started.
InProgress
Card is actively being worked on.
InReview
Card is in review/QA.
Done
Card is complete.
Archived
Card is archived (hidden from active views).
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CardState
impl<'de> Deserialize<'de> for CardState
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 Copy for CardState
impl Eq for CardState
impl StructuralPartialEq for CardState
Auto Trait Implementations§
impl Freeze for CardState
impl RefUnwindSafe for CardState
impl Send for CardState
impl Sync for CardState
impl Unpin for CardState
impl UnsafeUnpin for CardState
impl UnwindSafe for CardState
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