#[non_exhaustive]#[repr(u32)]pub enum ISteamHTMLSurface_EHTMLKeyModifiers {
k_eHTMLKeyModifier_None = 0,
k_eHTMLKeyModifier_AltDown = 1,
k_eHTMLKeyModifier_CtrlDown = 2,
k_eHTMLKeyModifier_ShiftDown = 4,
}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.
k_eHTMLKeyModifier_None = 0
k_eHTMLKeyModifier_AltDown = 1
k_eHTMLKeyModifier_CtrlDown = 2
k_eHTMLKeyModifier_ShiftDown = 4
Trait Implementations§
Source§impl Clone for ISteamHTMLSurface_EHTMLKeyModifiers
impl Clone for ISteamHTMLSurface_EHTMLKeyModifiers
Source§fn clone(&self) -> ISteamHTMLSurface_EHTMLKeyModifiers
fn clone(&self) -> ISteamHTMLSurface_EHTMLKeyModifiers
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 PartialEq for ISteamHTMLSurface_EHTMLKeyModifiers
impl PartialEq for ISteamHTMLSurface_EHTMLKeyModifiers
Source§fn eq(&self, other: &ISteamHTMLSurface_EHTMLKeyModifiers) -> bool
fn eq(&self, other: &ISteamHTMLSurface_EHTMLKeyModifiers) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ISteamHTMLSurface_EHTMLKeyModifiers
impl Eq for ISteamHTMLSurface_EHTMLKeyModifiers
impl StructuralPartialEq for ISteamHTMLSurface_EHTMLKeyModifiers
Auto Trait Implementations§
impl Freeze for ISteamHTMLSurface_EHTMLKeyModifiers
impl RefUnwindSafe for ISteamHTMLSurface_EHTMLKeyModifiers
impl Send for ISteamHTMLSurface_EHTMLKeyModifiers
impl Sync for ISteamHTMLSurface_EHTMLKeyModifiers
impl Unpin for ISteamHTMLSurface_EHTMLKeyModifiers
impl UnsafeUnpin for ISteamHTMLSurface_EHTMLKeyModifiers
impl UnwindSafe for ISteamHTMLSurface_EHTMLKeyModifiers
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