Enum PhaseMode
#[repr(u8)]pub enum PhaseMode {
None = 0,
OneLine = 1,
TwoLines = 2,
FourLines = 3,
EightLines = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}Variants§
None = 0
No alternate bytes
OneLine = 1
Alternate bytes on a single line
TwoLines = 2
Alternate bytes on two lines
FourLines = 3
Alternate bytes on four lines
EightLines = 4
Alternate bytes on eight lines
_RESERVED_5 = 5
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
impl Copy for PhaseMode
impl Eq for PhaseMode
§impl Ord for PhaseMode
impl Ord for PhaseMode
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for PhaseMode
impl PartialOrd for PhaseMode
impl StructuralPartialEq for PhaseMode
Auto Trait Implementations§
impl Freeze for PhaseMode
impl RefUnwindSafe for PhaseMode
impl Send for PhaseMode
impl Sync for PhaseMode
impl Unpin for PhaseMode
impl UnsafeUnpin for PhaseMode
impl UnwindSafe for PhaseMode
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