pub enum ControllerEvent {
ButtonEvent(ButtonEvent),
}
Expand description
Lists all (supported) events which can be sent by the controller. These come with the parsed event data and are the result of a parse
call.
Variants
ButtonEvent(ButtonEvent)
Trait Implementations
sourceimpl Debug for ControllerEvent
impl Debug for ControllerEvent
sourceimpl Format for ControllerEvent
impl Format for ControllerEvent
sourceimpl PartialEq<ControllerEvent> for ControllerEvent
impl PartialEq<ControllerEvent> for ControllerEvent
sourcefn eq(&self, other: &ControllerEvent) -> bool
fn eq(&self, other: &ControllerEvent) -> bool
impl StructuralPartialEq for ControllerEvent
Auto Trait Implementations
impl RefUnwindSafe for ControllerEvent
impl Send for ControllerEvent
impl Sync for ControllerEvent
impl Unpin for ControllerEvent
impl UnwindSafe for ControllerEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more