#[non_exhaustive]pub enum WorkflowStateType {
Triage,
Backlog,
Unstarted,
Started,
Completed,
Canceled,
Unrecognized(String),
}Expand description
The kind of a workflow state (column category on a Linear board).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Triage
Triage inbox.
Backlog
Backlog.
Unstarted
Not started yet.
Started
In progress.
Completed
Done.
Canceled
Canceled.
Unrecognized(String)
A wire value this crate does not know about (server-added variants deserialize here instead of failing).
Trait Implementations§
Source§impl Clone for WorkflowStateType
impl Clone for WorkflowStateType
Source§fn clone(&self) -> WorkflowStateType
fn clone(&self) -> WorkflowStateType
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 WorkflowStateType
impl Debug for WorkflowStateType
Source§impl<'de> Deserialize<'de> for WorkflowStateType
impl<'de> Deserialize<'de> for WorkflowStateType
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 WorkflowStateType
Source§impl From<String> for WorkflowStateType
impl From<String> for WorkflowStateType
Source§impl From<WorkflowStateType> for String
impl From<WorkflowStateType> for String
Source§fn from(v: WorkflowStateType) -> String
fn from(v: WorkflowStateType) -> String
Converts to this type from the input type.
Source§impl PartialEq for WorkflowStateType
impl PartialEq for WorkflowStateType
Source§fn eq(&self, other: &WorkflowStateType) -> bool
fn eq(&self, other: &WorkflowStateType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkflowStateType
impl Serialize for WorkflowStateType
impl StructuralPartialEq for WorkflowStateType
Auto Trait Implementations§
impl Freeze for WorkflowStateType
impl RefUnwindSafe for WorkflowStateType
impl Send for WorkflowStateType
impl Sync for WorkflowStateType
impl Unpin for WorkflowStateType
impl UnsafeUnpin for WorkflowStateType
impl UnwindSafe for WorkflowStateType
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