pub type Sense = Sense0select;
Aliased Type§
enum Sense {
None = 0,
Rise = 1,
Fall = 2,
Both = 3,
High = 4,
Low = 5,
}
Variants§
None = 0
0: No detection
Rise = 1
1: Rising-edge detection
Fall = 2
2: Falling-edge detection
Both = 3
3: Both-edges detection
High = 4
4: High-level detection
Low = 5
5: Low-level detection
Trait Implementations
Source§impl Clone for Sense0select
impl Clone for Sense0select
Source§fn clone(&self) -> Sense0select
fn clone(&self) -> Sense0select
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