[][src]Enum genie_hki::IndexError

pub enum IndexError {
    GroupIndex(GroupIndexError),
    HotkeyIndex(HotkeyIndexError),
}

Represents an error when binding or unbinding a hotkey that doesn't exist.

Variants

GroupIndex(GroupIndexError)

Represents an index error when accessing a nonexistent group.

HotkeyIndex(HotkeyIndexError)

Represents an index error when accessing a nonexistent hotkey within a group.

Trait Implementations

impl Debug for IndexError[src]

impl Display for IndexError[src]

impl Error for IndexError[src]

impl From<GroupIndexError> for IndexError[src]

impl From<HotkeyIndexError> for IndexError[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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.