[][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 Clone for MappingError[src]

impl Copy for MappingError[src]

impl Debug for MappingError[src]

impl Display for MappingError[src]

impl Error for MappingError[src]

impl PartialEq<MappingError> for MappingError[src]

impl StructuralPartialEq for MappingError[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.