pub enum DetectorObservableInstruction {
SetDetector,
SetObservable,
}Expand description
Detector and observable setup instructions (device code 0x14).
Variants§
SetDetector
Build a detector record from an array. Opcode 0x0014.
SetObservable
Build an observable record from an array. Opcode 0x0114.
Trait Implementations§
Source§impl Clone for DetectorObservableInstruction
impl Clone for DetectorObservableInstruction
Source§fn clone(&self) -> DetectorObservableInstruction
fn clone(&self) -> DetectorObservableInstruction
Returns a duplicate 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 PartialEq for DetectorObservableInstruction
impl PartialEq for DetectorObservableInstruction
Source§fn eq(&self, other: &DetectorObservableInstruction) -> bool
fn eq(&self, other: &DetectorObservableInstruction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DetectorObservableInstruction
impl Eq for DetectorObservableInstruction
impl StructuralPartialEq for DetectorObservableInstruction
Auto Trait Implementations§
impl Freeze for DetectorObservableInstruction
impl RefUnwindSafe for DetectorObservableInstruction
impl Send for DetectorObservableInstruction
impl Sync for DetectorObservableInstruction
impl Unpin for DetectorObservableInstruction
impl UnwindSafe for DetectorObservableInstruction
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