#[non_exhaustive]#[repr(i32)]pub enum win_t {
Show 16 variants
ekWIN_9x = 1,
ekWIN_NT4 = 2,
ekWIN_2K = 3,
ekWIN_XP = 4,
ekWIN_XP1 = 5,
ekWIN_XP2 = 6,
ekWIN_XP3 = 7,
ekWIN_VI = 8,
ekWIN_VI1 = 9,
ekWIN_VI2 = 10,
ekWIN_7 = 11,
ekWIN_71 = 12,
ekWIN_8 = 13,
ekWIN_81 = 14,
ekWIN_10 = 15,
ekWIN_NO = 16,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ekWIN_9x = 1
ekWIN_NT4 = 2
ekWIN_2K = 3
ekWIN_XP = 4
ekWIN_XP1 = 5
ekWIN_XP2 = 6
ekWIN_XP3 = 7
ekWIN_VI = 8
ekWIN_VI1 = 9
ekWIN_VI2 = 10
ekWIN_7 = 11
ekWIN_71 = 12
ekWIN_8 = 13
ekWIN_81 = 14
ekWIN_10 = 15
ekWIN_NO = 16
Trait Implementations§
impl Copy for _win_t
impl Eq for _win_t
impl StructuralPartialEq for _win_t
Auto Trait Implementations§
impl Freeze for _win_t
impl RefUnwindSafe for _win_t
impl Send for _win_t
impl Sync for _win_t
impl Unpin for _win_t
impl UnwindSafe for _win_t
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