pub enum ProjectMilestoneStatus {
Unstarted,
Next,
Overdue,
Done,
Unknown,
}Expand description
The status of a project milestone.
Variants§
Trait Implementations§
Source§impl Clone for ProjectMilestoneStatus
impl Clone for ProjectMilestoneStatus
Source§fn clone(&self) -> ProjectMilestoneStatus
fn clone(&self) -> ProjectMilestoneStatus
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 ProjectMilestoneStatus
impl Debug for ProjectMilestoneStatus
Source§impl<'de> Deserialize<'de> for ProjectMilestoneStatus
impl<'de> Deserialize<'de> for ProjectMilestoneStatus
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 ProjectMilestoneStatus
impl PartialEq for ProjectMilestoneStatus
Source§impl Serialize for ProjectMilestoneStatus
impl Serialize for ProjectMilestoneStatus
impl Eq for ProjectMilestoneStatus
impl StructuralPartialEq for ProjectMilestoneStatus
Auto Trait Implementations§
impl Freeze for ProjectMilestoneStatus
impl RefUnwindSafe for ProjectMilestoneStatus
impl Send for ProjectMilestoneStatus
impl Sync for ProjectMilestoneStatus
impl Unpin for ProjectMilestoneStatus
impl UnwindSafe for ProjectMilestoneStatus
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