#[repr(u8)]pub enum Tprictrl {
ABORT_CURRENT_ON_PRIORITY = 0,
FINISH_CURRENT_ON_PRIORITY = 1,
FINISH_SEQUENCE_ON_PRIORITY = 2,
_RESERVED_3 = 3,
}Variants§
ABORT_CURRENT_ON_PRIORITY = 0
Current conversion is aborted and the new command specified by the trigger is started.
FINISH_CURRENT_ON_PRIORITY = 1
Current command is stopped after completing the current conversion. If averaging is enabled, the averaging loop is completed. CMDHn[LOOP] is ignored and the higher-priority trigger is serviced.
FINISH_SEQUENCE_ON_PRIORITY = 2
Current command is completed (averaging, looping, compare) before servicing the higher-priority trigger.
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for Tprictrl
impl Ord for Tprictrl
Source§impl PartialOrd for Tprictrl
impl PartialOrd for Tprictrl
impl Copy for Tprictrl
impl Eq for Tprictrl
impl StructuralPartialEq for Tprictrl
Auto Trait Implementations§
impl Freeze for Tprictrl
impl RefUnwindSafe for Tprictrl
impl Send for Tprictrl
impl Sync for Tprictrl
impl Unpin for Tprictrl
impl UnwindSafe for Tprictrl
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