[][src]Enum cue_sdk::led::LedId

pub enum LedId {
    Keyboard(KeyboardLedId),
    Mouse(MouseLedId),
    MouseMat(MouseMatLedId),
    Headset(HeadsetLedId),
    HeadsetStand(HeadsetStandLedId),
    Memory(MemoryModuleLedId),
    Motherboard(MotherboardLedId),
    GraphicsCard(GraphicsCardLedId),
    Commander(CommanderLedId),
    Device(DeviceLedId),
    Integrated(IntegratedLedId),
    Unknown(u32),
}

All of the valid LedIds currently in the iCUE SDK. They are broken into subcategories, each with a number of available values.

Variants

Keyboard(KeyboardLedId)
Mouse(MouseLedId)
MouseMat(MouseMatLedId)
Headset(HeadsetLedId)
HeadsetStand(HeadsetStandLedId)
Memory(MemoryModuleLedId)
Motherboard(MotherboardLedId)
GraphicsCard(GraphicsCardLedId)
Commander(CommanderLedId)
Device(DeviceLedId)
Integrated(IntegratedLedId)
Unknown(u32)

Trait Implementations

impl Clone for LedId[src]

impl Copy for LedId[src]

impl Debug for LedId[src]

impl From<LedId> for CorsairLedId[src]

impl From<u32> for LedId[src]

impl PartialEq<LedId> for LedId[src]

impl StructuralPartialEq for LedId[src]

Auto Trait Implementations

impl RefUnwindSafe for LedId

impl Send for LedId

impl Sync for LedId

impl Unpin for LedId

impl UnwindSafe for LedId

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.