#[repr(u8)]pub enum Trigger {
ActiveLow = 0,
ActiveHigh = 1,
}Expand description
Active level that triggers a tamper detection event on an external channel.
Variants§
ActiveLow = 0
The pin being sampled (or transitioning to) a low level triggers detection.
ActiveHigh = 1
The pin being sampled (or transitioning to) a high level triggers detection.
Trait Implementations§
impl Copy for Trigger
impl Eq for Trigger
impl StructuralPartialEq for Trigger
Auto Trait Implementations§
impl Freeze for Trigger
impl RefUnwindSafe for Trigger
impl Send for Trigger
impl Sync for Trigger
impl Unpin for Trigger
impl UnwindSafe for Trigger
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