pub enum ProjectStatusType {
Backlog,
Planned,
Started,
Paused,
Completed,
Canceled,
Unknown,
}Expand description
A type of project status.
Variants§
Backlog
Planned
Started
Paused
Completed
Canceled
Unknown
Catch-all for unknown/new variants added by Linear.
Trait Implementations§
Source§impl Clone for ProjectStatusType
impl Clone for ProjectStatusType
Source§fn clone(&self) -> ProjectStatusType
fn clone(&self) -> ProjectStatusType
Returns a duplicate 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 ProjectStatusType
impl Debug for ProjectStatusType
Source§impl<'de> Deserialize<'de> for ProjectStatusType
impl<'de> Deserialize<'de> for ProjectStatusType
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 PartialEq for ProjectStatusType
impl PartialEq for ProjectStatusType
Source§impl Serialize for ProjectStatusType
impl Serialize for ProjectStatusType
impl Eq for ProjectStatusType
impl StructuralPartialEq for ProjectStatusType
Auto Trait Implementations§
impl Freeze for ProjectStatusType
impl RefUnwindSafe for ProjectStatusType
impl Send for ProjectStatusType
impl Sync for ProjectStatusType
impl Unpin for ProjectStatusType
impl UnwindSafe for ProjectStatusType
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