pub enum Status {
Proposed,
Planned,
InProgress,
InReview,
Completed,
}Expand description
The different statuses an objective can have.
Variants§
Proposed
The objective has been proposed, but no action has been taken on it.
Planned
The objective is planned, so it has a time frame, but no action has been taken on it.
InProgress
The objective is actively in-progress.
InReview
The objective is complete and pending whatever review is appropriate.
Completed
The objective is complete.
Trait Implementations§
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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