pub struct Trigger {
pub target_command_id: CommandId,
pub delay_power: u8,
pub priority: Tpri,
pub enable_hardware_trigger: bool,
pub resync: bool,
pub synchronous: bool,
}Expand description
Configuration for a conversion trigger.
Defines how a trigger initiates ADC conversions.
Fields§
§target_command_id: CommandIdThe command that is triggered by this trigger
delay_power: u8§priority: TpriThe priority level of the trigger
enable_hardware_trigger: bool§resync: bool§synchronous: boolTrait 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