pub enum TriggerMode {
Disabled,
RisingEdge,
FallingEdge,
BothEdges,
}
Expand description
Possible trigger modes
Variants§
Disabled
Don’t listen to external trigger
RisingEdge
Listen for rising edges of external trigger
FallingEdge
Listen for falling edges of external trigger
BothEdges
Listen for both rising and falling edges of external trigger
Trait Implementations§
Source§impl Clone for TriggerMode
impl Clone for TriggerMode
Source§fn clone(&self) -> TriggerMode
fn clone(&self) -> TriggerMode
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 TriggerMode
impl Debug for TriggerMode
Source§impl From<TriggerMode> for u8
impl From<TriggerMode> for u8
Source§fn from(tm: TriggerMode) -> u8
fn from(tm: TriggerMode) -> u8
Converts to this type from the input type.
impl Copy for TriggerMode
Auto Trait Implementations§
impl Freeze for TriggerMode
impl RefUnwindSafe for TriggerMode
impl Send for TriggerMode
impl Sync for TriggerMode
impl Unpin for TriggerMode
impl UnwindSafe for TriggerMode
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