pub enum StatusCategory {
Draft,
Backlog,
Todo,
InProgress,
Done,
Cancelled,
Unknown,
}Expand description
The normalised status vocabulary shared across every source.
Variants§
Draft
Written down but not yet committed to as work.
Backlog
Known about, not yet queued.
Todo
Queued, not yet started.
InProgress
Being worked on.
Done
Finished.
Cancelled
Abandoned.
Unknown
The source reported a status this vocabulary cannot place.
Trait Implementations§
Source§impl Clone for StatusCategory
impl Clone for StatusCategory
Source§fn clone(&self) -> StatusCategory
fn clone(&self) -> StatusCategory
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 StatusCategory
Source§impl Debug for StatusCategory
impl Debug for StatusCategory
Source§impl<'de> Deserialize<'de> for StatusCategory
impl<'de> Deserialize<'de> for StatusCategory
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 StatusCategory
Source§impl Hash for StatusCategory
impl Hash for StatusCategory
Source§impl JsonSchema for StatusCategory
impl JsonSchema for StatusCategory
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for StatusCategory
impl PartialEq for StatusCategory
Source§impl Serialize for StatusCategory
impl Serialize for StatusCategory
impl StructuralPartialEq for StatusCategory
Auto Trait Implementations§
impl Freeze for StatusCategory
impl RefUnwindSafe for StatusCategory
impl Send for StatusCategory
impl Sync for StatusCategory
impl Unpin for StatusCategory
impl UnsafeUnpin for StatusCategory
impl UnwindSafe for StatusCategory
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