Enum PlanPriority
pub enum PlanPriority {
Low,
Normal,
High,
Urgent,
}Variants§
Implementations§
§impl PlanPriority
impl PlanPriority
pub const ALL: &'static [PlanPriority]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for PlanPriority
impl Clone for PlanPriority
§fn clone(&self) -> PlanPriority
fn clone(&self) -> PlanPriority
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 more§impl Debug for PlanPriority
impl Debug for PlanPriority
§impl Display for PlanPriority
impl Display for PlanPriority
§impl FromStr for PlanPriority
impl FromStr for PlanPriority
§type Err = PlanningError
type Err = PlanningError
The associated error which can be returned from parsing.
§fn from_str(value: &str) -> Result<PlanPriority, <PlanPriority as FromStr>::Err>
fn from_str(value: &str) -> Result<PlanPriority, <PlanPriority as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for PlanPriority
impl Hash for PlanPriority
§impl Ord for PlanPriority
impl Ord for PlanPriority
§impl PartialEq for PlanPriority
impl PartialEq for PlanPriority
§impl PartialOrd for PlanPriority
impl PartialOrd for PlanPriority
impl Copy for PlanPriority
impl Eq for PlanPriority
impl StructuralPartialEq for PlanPriority
Auto Trait Implementations§
impl Freeze for PlanPriority
impl RefUnwindSafe for PlanPriority
impl Send for PlanPriority
impl Sync for PlanPriority
impl Unpin for PlanPriority
impl UnsafeUnpin for PlanPriority
impl UnwindSafe for PlanPriority
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