#[repr(u8)]pub enum Winmodeselect {
Disable = 0,
Mode1 = 1,
Mode2 = 2,
Mode3 = 3,
Mode4 = 4,
}
Expand description
Window Monitor Mode
Value on reset: 0
Variants§
Disable = 0
0: No window mode (default)
Mode1 = 1
1: RESULT > WINLT
Mode2 = 2
2: RESULT < WINUT
Mode3 = 3
3: WINLT < RESULT < WINUT
Mode4 = 4
4: !(WINLT < RESULT < WINUT)
Trait Implementations§
Source§impl Clone for Winmodeselect
impl Clone for Winmodeselect
Source§fn clone(&self) -> Winmodeselect
fn clone(&self) -> Winmodeselect
Returns a copy 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 Winmodeselect
impl Debug for Winmodeselect
Source§impl From<Winmodeselect> for u8
impl From<Winmodeselect> for u8
Source§fn from(variant: Winmodeselect) -> Self
fn from(variant: Winmodeselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Winmodeselect
impl PartialEq for Winmodeselect
impl Copy for Winmodeselect
impl Eq for Winmodeselect
impl IsEnum for Winmodeselect
impl StructuralPartialEq for Winmodeselect
Auto Trait Implementations§
impl Freeze for Winmodeselect
impl RefUnwindSafe for Winmodeselect
impl Send for Winmodeselect
impl Sync for Winmodeselect
impl Unpin for Winmodeselect
impl UnwindSafe for Winmodeselect
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