Enum input_manager::Binding[][src]

pub enum Binding<A, B> {
    Axis(A),
    Button(B),
}

Variants

Trait Implementations

impl<A: Hash, B: Hash> Hash for Binding<A, B>
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<A: Eq, B: Eq> Eq for Binding<A, B>
[src]

impl<A: PartialEq, B: PartialEq> PartialEq for Binding<A, B>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<A: Clone, B: Clone> Clone for Binding<A, B>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<A: Debug, B: Debug> Debug for Binding<A, B>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<A, B> Send for Binding<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for Binding<A, B> where
    A: Sync,
    B: Sync