Struct input::event::switch::SwitchToggleEvent
[−]
[src]
pub struct SwitchToggleEvent { /* fields omitted */ }An event related a switch, that was toggled
Methods
impl SwitchToggleEvent[src]
fn switch(&self) -> Switch
Return the switch that triggered this event.
fn switch_state(&self) -> SwitchState
Return the switch state that triggered this event.
Trait Implementations
impl Eq for SwitchToggleEvent[src]
impl Debug for SwitchToggleEvent[src]
impl FromRaw<libinput_event_switch> for SwitchToggleEvent[src]
unsafe fn from_raw(ffi: *mut libinput_event_switch) -> Self
Create a new instance of this type from a raw pointer. Read more
impl AsRaw<libinput_event_switch> for SwitchToggleEvent[src]
fn as_raw(&self) -> *const libinput_event_switch
Receive a raw pointer representing this type.
impl PartialEq for SwitchToggleEvent[src]
fn eq(&self, other: &Self) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Hash for SwitchToggleEvent[src]
fn hash<H: Hasher>(&self, state: &mut H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher1.3.0
Feeds a slice of this type into the state provided.
impl EventTrait for SwitchToggleEvent[src]
fn into_event(self) -> Event where Self: Sized
Convert into a general Event again
fn context(&self) -> Libinput
Get the libinput context from the event.
fn device(&self) -> Device
Return the device associated with this event. Read more