#[repr(isize)]pub enum TriggerSource {
Show 17 variants
NoTrigger = 0,
PC = 1,
DetectorAnalogIn = 2,
DetectorDigitalIn = 3,
AnalogIn = 4,
DigitalIn = 5,
DigitalOut = 6,
AnalogOut1 = 7,
AnalogOut2 = 8,
AnalogOut3 = 9,
AnalogOut4 = 10,
External1 = 11,
External2 = 12,
External3 = 13,
External4 = 14,
High = 15,
Low = 16,
}
Variants§
NoTrigger = 0
PC = 1
DetectorAnalogIn = 2
DetectorDigitalIn = 3
AnalogIn = 4
DigitalIn = 5
DigitalOut = 6
AnalogOut1 = 7
AnalogOut2 = 8
AnalogOut3 = 9
AnalogOut4 = 10
External1 = 11
External2 = 12
External3 = 13
External4 = 14
High = 15
Low = 16
Trait Implementations§
Source§impl Clone for TriggerSource
impl Clone for TriggerSource
Source§fn clone(&self) -> TriggerSource
fn clone(&self) -> TriggerSource
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 moreSource§impl Debug for TriggerSource
impl Debug for TriggerSource
Source§impl PartialEq for TriggerSource
impl PartialEq for TriggerSource
impl Copy for TriggerSource
impl StructuralPartialEq for TriggerSource
Auto Trait Implementations§
impl Freeze for TriggerSource
impl RefUnwindSafe for TriggerSource
impl Send for TriggerSource
impl Sync for TriggerSource
impl Unpin for TriggerSource
impl UnwindSafe for TriggerSource
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