pub enum Priority {
Max,
High,
Medium,
Low,
Lowest,
}Expand description
Priority level inferred from the command token’s shape.
Variants§
Max
ALL_CAPS token
High
TitleCase token
Medium
camelCase token
Low
kebab-case or plain lowercase token
Lowest
snake_case token
Trait Implementations§
impl StructuralPartialEq for Priority
Auto Trait Implementations§
impl Freeze for Priority
impl RefUnwindSafe for Priority
impl Send for Priority
impl Sync for Priority
impl Unpin for Priority
impl UnsafeUnpin for Priority
impl UnwindSafe for Priority
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