Enum PlanPriority
pub enum PlanPriority {
High,
Medium,
Low,
}Expand description
Relative importance of a plan entry. Defaults to Medium when a
caller omits it; ACP requires priority on the outward projection,
so normalization to a concrete value happens at parse time here.
Variants§
Trait Implementations§
Source§impl Clone for PlanPriority
impl Clone for PlanPriority
Source§fn clone(&self) -> PlanPriority
fn clone(&self) -> PlanPriority
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · §fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlanPriority
impl Debug for PlanPriority
Source§impl Default for PlanPriority
impl Default for PlanPriority
Source§fn default() -> PlanPriority
fn default() -> PlanPriority
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlanPriority
impl<'de> Deserialize<'de> for PlanPriority
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 PlanPriority
impl PartialEq for PlanPriority
Source§impl Serialize for PlanPriority
impl Serialize 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