#[non_exhaustive]pub enum ProjectStatusType {
Backlog,
Planned,
Started,
Paused,
Completed,
Canceled,
Unrecognized(String),
}Expand description
The kind of a project status.
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.
Backlog
Backlog.
Planned
Planned.
Started
In progress.
Paused
Paused.
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 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 (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 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
impl Eq for ProjectStatusType
Source§impl From<ProjectStatusType> for String
impl From<ProjectStatusType> for String
Source§fn from(v: ProjectStatusType) -> String
fn from(v: ProjectStatusType) -> String
Converts to this type from the input type.
Source§impl From<String> for ProjectStatusType
impl From<String> for ProjectStatusType
Source§impl PartialEq for ProjectStatusType
impl PartialEq for ProjectStatusType
Source§fn eq(&self, other: &ProjectStatusType) -> bool
fn eq(&self, other: &ProjectStatusType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectStatusType
impl Serialize 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 UnsafeUnpin 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