#[repr(u32)]pub enum OptionCategory {
Regular = 0,
Expert = 1,
Common = 2,
Undocumented = 3,
Last = 4,
}Expand description
Option category enumeration. Specifies the category of an option for user interface purposes.
Variants§
Trait Implementations§
Source§impl Clone for OptionCategory
impl Clone for OptionCategory
Source§fn clone(&self) -> OptionCategory
fn clone(&self) -> OptionCategory
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 OptionCategory
impl Debug for OptionCategory
Source§impl Hash for OptionCategory
impl Hash for OptionCategory
Source§impl PartialEq for OptionCategory
impl PartialEq for OptionCategory
impl Copy for OptionCategory
impl Eq for OptionCategory
impl StructuralPartialEq for OptionCategory
Auto Trait Implementations§
impl Freeze for OptionCategory
impl RefUnwindSafe for OptionCategory
impl Send for OptionCategory
impl Sync for OptionCategory
impl Unpin for OptionCategory
impl UnsafeUnpin for OptionCategory
impl UnwindSafe for OptionCategory
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