Enum input_linux::EventMut [] [src]

pub enum EventMut<'a> {
    Synchronize(&'a mut SynchronizeEvent),
    Key(&'a mut KeyEvent),
    Relative(&'a mut RelativeEvent),
    Absolute(&'a mut AbsoluteEvent),
    Switch(&'a mut SwitchEvent),
    Misc(&'a mut MiscEvent),
    Led(&'a mut LedEvent),
    Autorepeat(&'a mut AutorepeatEvent),
    Sound(&'a mut SoundEvent),
    UInput(&'a mut UInputEvent),
    Unknown(&'a mut InputEvent),
}

Variants

Methods

impl<'a> EventMut<'a>
[src]

[src]

Trait Implementations

impl<'a> PartialEq for EventMut<'a>
[src]

[src]

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

[src]

This method tests for !=.

impl<'a> Eq for EventMut<'a>
[src]

impl<'a> Hash for EventMut<'a>
[src]

[src]

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

1.3.0
[src]

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

impl<'a> Debug for EventMut<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> From<&'a mut SynchronizeEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut KeyEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut RelativeEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut AbsoluteEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut SwitchEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut MiscEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut LedEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut AutorepeatEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut SoundEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut UInputEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a mut Event> for EventMut<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a EventMut<'a>> for &'a InputEvent
[src]

[src]

Performs the conversion.

impl<'a> AsRef<InputEvent> for EventMut<'a>
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl<'a> Send for EventMut<'a>

impl<'a> Sync for EventMut<'a>