#[non_exhaustive]#[repr(u32)]pub enum ESteamInputLEDFlag {
k_ESteamInputLEDFlag_SetColor = 0,
k_ESteamInputLEDFlag_RestoreUserDefault = 1,
}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.
Trait Implementations§
Source§impl Clone for ESteamInputLEDFlag
impl Clone for ESteamInputLEDFlag
Source§fn clone(&self) -> ESteamInputLEDFlag
fn clone(&self) -> ESteamInputLEDFlag
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ESteamInputLEDFlag
Source§impl Debug for ESteamInputLEDFlag
impl Debug for ESteamInputLEDFlag
impl Eq for ESteamInputLEDFlag
Source§impl Hash for ESteamInputLEDFlag
impl Hash for ESteamInputLEDFlag
Source§impl PartialEq for ESteamInputLEDFlag
impl PartialEq for ESteamInputLEDFlag
Source§fn eq(&self, other: &ESteamInputLEDFlag) -> bool
fn eq(&self, other: &ESteamInputLEDFlag) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ESteamInputLEDFlag
Auto Trait Implementations§
impl Freeze for ESteamInputLEDFlag
impl RefUnwindSafe for ESteamInputLEDFlag
impl Send for ESteamInputLEDFlag
impl Sync for ESteamInputLEDFlag
impl Unpin for ESteamInputLEDFlag
impl UnsafeUnpin for ESteamInputLEDFlag
impl UnwindSafe for ESteamInputLEDFlag
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