pub enum TriggerMode {
Immediate = 0,
Level = 1,
Digital = 2,
}Variants§
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 (const: unstable) · 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 PartialEq for TriggerMode
impl PartialEq for TriggerMode
Source§fn eq(&self, other: &TriggerMode) -> bool
fn eq(&self, other: &TriggerMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<i32> for TriggerMode
impl TryFrom<i32> for TriggerMode
Source§type Error = NanonisError
type Error = NanonisError
The type returned in the event of a conversion error.
Source§fn try_from(
value: i32,
) -> Result<TriggerMode, <TriggerMode as TryFrom<i32>>::Error>
fn try_from( value: i32, ) -> Result<TriggerMode, <TriggerMode as TryFrom<i32>>::Error>
Performs the conversion.
Source§impl TryFrom<u16> for TriggerMode
impl TryFrom<u16> for TriggerMode
Source§type Error = NanonisError
type Error = NanonisError
The type returned in the event of a conversion error.
Source§fn try_from(
value: u16,
) -> Result<TriggerMode, <TriggerMode as TryFrom<u16>>::Error>
fn try_from( value: u16, ) -> Result<TriggerMode, <TriggerMode as TryFrom<u16>>::Error>
Performs the conversion.
impl Copy for TriggerMode
impl Eq for TriggerMode
impl StructuralPartialEq 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 UnsafeUnpin 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