pub enum DeadlineType {
Hard,
Soft,
Target,
Recurring,
}Expand description
Type of deadline.
Variants§
Hard
Hard deadline — cannot be moved.
Soft
Soft deadline — can be negotiated.
Target
Target — aspirational, not committed.
Recurring
Recurring — repeats on schedule.
Trait Implementations§
Source§impl Clone for DeadlineType
impl Clone for DeadlineType
Source§fn clone(&self) -> DeadlineType
fn clone(&self) -> DeadlineType
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 DeadlineType
impl Debug for DeadlineType
Source§impl<'de> Deserialize<'de> for DeadlineType
impl<'de> Deserialize<'de> for DeadlineType
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 DeadlineType
impl PartialEq for DeadlineType
Source§impl Serialize for DeadlineType
impl Serialize for DeadlineType
impl Copy for DeadlineType
impl Eq for DeadlineType
impl StructuralPartialEq for DeadlineType
Auto Trait Implementations§
impl Freeze for DeadlineType
impl RefUnwindSafe for DeadlineType
impl Send for DeadlineType
impl Sync for DeadlineType
impl Unpin for DeadlineType
impl UnsafeUnpin for DeadlineType
impl UnwindSafe for DeadlineType
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