[][src]Enum widgetry::MultiKey

pub enum MultiKey {
    Normal(Key),
    LCtrl(Key),
    Any(Vec<Key>),
}

Variants

Normal(Key)
LCtrl(Key)
Any(Vec<Key>)

Implementations

impl MultiKey[src]

pub fn describe(&self) -> String[src]

Trait Implementations

impl Clone for MultiKey[src]

impl Debug for MultiKey[src]

impl Eq for MultiKey[src]

impl From<Key> for MultiKey[src]

impl Hash for MultiKey[src]

impl Ord for MultiKey[src]

impl PartialEq<MultiKey> for MultiKey[src]

impl PartialOrd<MultiKey> for MultiKey[src]

impl StructuralEq for MultiKey[src]

impl StructuralPartialEq for MultiKey[src]

Auto Trait Implementations

impl RefUnwindSafe for MultiKey[src]

impl Send for MultiKey[src]

impl Sync for MultiKey[src]

impl Unpin for MultiKey[src]

impl UnwindSafe for MultiKey[src]

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> CallHasher for T where
    T: Hash

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.