#[repr(u8)]pub enum PriorityPosition {
First = 1,
Second = 2,
Third = 3,
Fourth = 4,
Fifth = 5,
Subordinate = 10,
Unspecified = 255,
}Expand description
Priority position for encumbrance
Variants§
Trait Implementations§
Source§impl Clone for PriorityPosition
impl Clone for PriorityPosition
Source§fn clone(&self) -> PriorityPosition
fn clone(&self) -> PriorityPosition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PriorityPosition
impl Debug for PriorityPosition
Source§impl<'de> Deserialize<'de> for PriorityPosition
impl<'de> Deserialize<'de> for PriorityPosition
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 PriorityPosition
impl PartialEq for PriorityPosition
Source§fn eq(&self, other: &PriorityPosition) -> bool
fn eq(&self, other: &PriorityPosition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PriorityPosition
impl Serialize for PriorityPosition
impl Copy for PriorityPosition
impl Eq for PriorityPosition
impl StructuralPartialEq for PriorityPosition
Auto Trait Implementations§
impl Freeze for PriorityPosition
impl RefUnwindSafe for PriorityPosition
impl Send for PriorityPosition
impl Sync for PriorityPosition
impl Unpin for PriorityPosition
impl UnsafeUnpin for PriorityPosition
impl UnwindSafe for PriorityPosition
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