[][src]Enum penrose::core::bindings::ModifierKey

pub enum ModifierKey {
    Ctrl,
    Alt,
    Shift,
    Meta,
}

Known modifier keys for bindings

Variants

Ctrl

Control

Alt

Alt

Shift

Shift

Meta

Meta / super / windows

Trait Implementations

impl Clone for ModifierKey[src]

impl Copy for ModifierKey[src]

impl Debug for ModifierKey[src]

impl Eq for ModifierKey[src]

impl Hash for ModifierKey[src]

impl IntoEnumIterator for ModifierKey[src]

impl Ord for ModifierKey[src]

impl PartialEq<ModifierKey> for ModifierKey[src]

impl PartialOrd<ModifierKey> for ModifierKey[src]

impl StructuralEq for ModifierKey[src]

impl StructuralPartialEq for ModifierKey[src]

impl TryFrom<&'_ str> for ModifierKey[src]

type Error = PenroseError

The type returned in the event of a conversion error.

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