pub enum DebouncedInputEvent {
Low,
High,
Rise,
Fall,
}Expand description
The event result of update DebouncedInput.
Variants§
Low
Stable low state, the input is inactive.
High
Stable high state, the input is active.
Rise
Rise event, the input is rised from inactive to active state.
Fall
Fall event, the input is rised from active to inactive state.
Trait Implementations§
source§impl Clone for DebouncedInputEvent
impl Clone for DebouncedInputEvent
source§fn clone(&self) -> DebouncedInputEvent
fn clone(&self) -> DebouncedInputEvent
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 more