#[repr(C)]pub struct SwitchEvent {
pub time: EventTime,
pub switch: SwitchKind,
pub value: i32,
/* private fields */
}
Expand description
Special switch events.
Fields§
§time: EventTime
The timestamp associated with the event.
switch: SwitchKind
The switch that triggered the event.
value: i32
The state of the switch.
Implementations§
Source§impl<'a> SwitchEvent
impl<'a> SwitchEvent
Sourcepub const fn new(time: EventTime, switch: SwitchKind, value: i32) -> Self
pub const fn new(time: EventTime, switch: SwitchKind, value: i32) -> Self
Creates a new event from the given code and value.
Sourcepub unsafe fn from_event<E: AsRef<input_event>>(event: &E) -> &Self
pub unsafe fn from_event<E: AsRef<input_event>>(event: &E) -> &Self
Reinterpret a generic event without checking for validity.
Sourcepub unsafe fn from_event_mut(event: &mut InputEvent) -> &mut Self
pub unsafe fn from_event_mut(event: &mut InputEvent) -> &mut Self
Reinterpret a mutable generic event without checking for validity.
Sourcepub fn into_event(self) -> InputEvent
pub fn into_event(self) -> InputEvent
A generic input event.
Sourcepub fn as_event(&self) -> &InputEvent
pub fn as_event(&self) -> &InputEvent
A generic input event reference.
Sourcepub unsafe fn as_event_mut(&mut self) -> &mut InputEvent
pub unsafe fn as_event_mut(&mut self) -> &mut InputEvent
A mutable generic input event reference.
Trait Implementations§
Source§impl AsRef<InputEvent> for SwitchEvent
impl AsRef<InputEvent> for SwitchEvent
Source§fn as_ref(&self) -> &InputEvent
fn as_ref(&self) -> &InputEvent
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<input_event> for SwitchEvent
impl AsRef<input_event> for SwitchEvent
Source§fn as_ref(&self) -> &input_event
fn as_ref(&self) -> &input_event
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for SwitchEvent
impl Clone for SwitchEvent
Source§fn clone(&self) -> SwitchEvent
fn clone(&self) -> SwitchEvent
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SwitchEvent
impl Debug for SwitchEvent
Source§impl<'de> Deserialize<'de> for SwitchEvent
impl<'de> Deserialize<'de> for SwitchEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> From<&'a SwitchEvent> for &'a InputEvent
impl<'a> From<&'a SwitchEvent> for &'a InputEvent
Source§fn from(event: &'a SwitchEvent) -> Self
fn from(event: &'a SwitchEvent) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a SwitchEvent> for EventRef<'a>
impl<'a> From<&'a SwitchEvent> for EventRef<'a>
Source§fn from(event: &'a SwitchEvent) -> Self
fn from(event: &'a SwitchEvent) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a SwitchEvent> for InputEvent
impl<'a> From<&'a SwitchEvent> for InputEvent
Source§fn from(event: &'a SwitchEvent) -> Self
fn from(event: &'a SwitchEvent) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a mut SwitchEvent> for EventMut<'a>
impl<'a> From<&'a mut SwitchEvent> for EventMut<'a>
Source§fn from(event: &'a mut SwitchEvent) -> Self
fn from(event: &'a mut SwitchEvent) -> Self
Converts to this type from the input type.
Source§impl From<SwitchEvent> for Event
impl From<SwitchEvent> for Event
Source§fn from(event: SwitchEvent) -> Self
fn from(event: SwitchEvent) -> Self
Converts to this type from the input type.
Source§impl From<SwitchEvent> for InputEvent
impl From<SwitchEvent> for InputEvent
Source§fn from(event: SwitchEvent) -> Self
fn from(event: SwitchEvent) -> Self
Converts to this type from the input type.
Source§impl GenericEvent for SwitchEvent
impl GenericEvent for SwitchEvent
Source§fn event_kind(&self) -> EventKind
fn event_kind(&self) -> EventKind
The event kind.
Source§fn with_event(event: InputEvent) -> Result<Self, RangeError>
fn with_event(event: InputEvent) -> Result<Self, RangeError>
Interprets a generic event into a concrete event type.
Source§unsafe fn with_event_unchecked(event: InputEvent) -> Self
unsafe fn with_event_unchecked(event: InputEvent) -> Self
Interprets a generic event into a concrete event type. Read more
Source§fn from_ref(event: &InputEvent) -> Result<&Self, RangeError>
fn from_ref(event: &InputEvent) -> Result<&Self, RangeError>
Interprets a generic event reference into a concrete event type.
Source§fn from_mut(event: &mut InputEvent) -> Result<&mut Self, RangeError>
fn from_mut(event: &mut InputEvent) -> Result<&mut Self, RangeError>
Interprets a mutable generic event reference into a concrete event type.
Source§impl Hash for SwitchEvent
impl Hash for SwitchEvent
Source§impl Ord for SwitchEvent
impl Ord for SwitchEvent
Source§fn cmp(&self, other: &SwitchEvent) -> Ordering
fn cmp(&self, other: &SwitchEvent) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SwitchEvent
impl PartialEq for SwitchEvent
Source§impl PartialOrd for SwitchEvent
impl PartialOrd for SwitchEvent
Source§impl Serialize for SwitchEvent
impl Serialize for SwitchEvent
Source§impl<'a> TryFrom<&'a InputEvent> for &'a SwitchEvent
impl<'a> TryFrom<&'a InputEvent> for &'a SwitchEvent
Source§type Error = RangeError
type Error = RangeError
The type returned in the event of a conversion error.
Source§impl<'a> TryFrom<&'a mut InputEvent> for &'a mut SwitchEvent
impl<'a> TryFrom<&'a mut InputEvent> for &'a mut SwitchEvent
Source§type Error = RangeError
type Error = RangeError
The type returned in the event of a conversion error.
Source§impl TryFrom<InputEvent> for SwitchEvent
impl TryFrom<InputEvent> for SwitchEvent
Source§type Error = RangeError
type Error = RangeError
The type returned in the event of a conversion error.
impl Copy for SwitchEvent
impl Eq for SwitchEvent
impl StructuralPartialEq for SwitchEvent
Auto Trait Implementations§
impl Freeze for SwitchEvent
impl RefUnwindSafe for SwitchEvent
impl Send for SwitchEvent
impl Sync for SwitchEvent
impl Unpin for SwitchEvent
impl UnwindSafe for SwitchEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more