[][src]Enum gilrs::MappingError

pub enum MappingError {
    InvalidCode(Code),
    InvalidName,
    NotImplemented,
    NotConnected,
    DuplicatedEntry,
    UnknownElement,
    NotSdl2Compatible,
}

The error type for functions related to gamepad mapping.

Variants

InvalidCode(Code)

Gamepad does not have element referenced by EvCode.

InvalidName

Name contains comma (',').

NotImplemented

This function is not implemented for current platform.

NotConnected

Gamepad is not connected.

DuplicatedEntry

Same gamepad element is referenced by axis and button.

UnknownElement

Mapping with Button::Unknown or Axis::Unknown.

NotSdl2Compatible

Mapping have button or axis that are not present in SDL2.

Trait Implementations

impl PartialEq<MappingError> for MappingError[src]

impl Clone for MappingError[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for MappingError[src]

impl Display for MappingError[src]

impl Debug for MappingError[src]

impl Error for MappingError[src]

fn cause(&self) -> Option<&dyn Error>
1.0.0
[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

The lower-level cause of this error, if any. Read more

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

The lower-level source of this error, if any. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.