pub enum Interaction {
    Action,
    Next,
    Previous,
    Back,
    Home,
}Expand description
Possible Interactions derived from the input
Variants§
Action
Primary HMI event to trigger some action e.g. go to next page
Next
Primary HMI event to e.g. go to next page
Previous
Primary HMI event to e.g. go to previous page
Back
Primary HMI event to e.g. go to one page up
Home
Event to go to home page. Could be a primary HMI event or a generated event.
Trait Implementations§
Source§impl Clone for Interaction
 
impl Clone for Interaction
Source§fn clone(&self) -> Interaction
 
fn clone(&self) -> Interaction
Returns a duplicate 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 Interaction
 
impl Debug for Interaction
impl Copy for Interaction
Auto Trait Implementations§
impl Freeze for Interaction
impl RefUnwindSafe for Interaction
impl Send for Interaction
impl Sync for Interaction
impl Unpin for Interaction
impl UnwindSafe for Interaction
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