[][src]Enum pc_keyboard::DecodedKey

pub enum DecodedKey {
    RawKey(KeyCode),
    Unicode(char),
}

Variants

RawKey(KeyCode)
Unicode(char)

Trait Implementations

impl Clone for DecodedKey[src]

impl Copy for DecodedKey[src]

impl Debug for DecodedKey[src]

impl Eq for DecodedKey[src]

impl PartialEq<DecodedKey> for DecodedKey[src]

impl StructuralEq for DecodedKey[src]

impl StructuralPartialEq for DecodedKey[src]

Auto Trait Implementations

impl Send for DecodedKey

impl Sync for DecodedKey

impl Unpin for DecodedKey

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, 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.