pub enum Nidbgselect {
Idbg = 0,
Nidbg = 1,
}
Expand description
Non-intrusive debug enable
Value on reset: 0
Variants§
Idbg = 0
0: Debugging is intrusive (reads of BDPR from debugger are considered and increment the internal buffer pointer)
Nidbg = 1
1: Debugging is not intrusive (reads of BDPR from debugger are discarded and do not increment the internal buffer pointer)
Trait Implementations§
Source§impl Clone for Nidbgselect
impl Clone for Nidbgselect
Source§fn clone(&self) -> Nidbgselect
fn clone(&self) -> Nidbgselect
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 Nidbgselect
impl Debug for Nidbgselect
Source§impl From<Nidbgselect> for bool
impl From<Nidbgselect> for bool
Source§fn from(variant: Nidbgselect) -> Self
fn from(variant: Nidbgselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Nidbgselect
impl PartialEq for Nidbgselect
impl Copy for Nidbgselect
impl Eq for Nidbgselect
impl StructuralPartialEq for Nidbgselect
Auto Trait Implementations§
impl Freeze for Nidbgselect
impl RefUnwindSafe for Nidbgselect
impl Send for Nidbgselect
impl Sync for Nidbgselect
impl Unpin for Nidbgselect
impl UnwindSafe for Nidbgselect
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