pub struct Trigger {
pub is_enabled: bool,
pub trigger_type: TriggerType,
pub source_channel: usize,
pub trigger_level: f64,
pub trigger_delay_us: u32,
}
Expand description
A representation of a trigger used to start a data sweep
Fields§
§is_enabled: bool
§trigger_type: TriggerType
§source_channel: usize
§trigger_level: f64
§trigger_delay_us: u32
Trait Implementations§
impl Copy 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