pub enum DebugServerKind {
Jlink,
Openocd,
Pyocd,
Gdbserver,
None,
}Expand description
Debug-server / GDB backend used to attach to a target.
Variants§
Jlink
SEGGER J-Link GDB server.
Openocd
OpenOCD.
Pyocd
pyOCD.
Gdbserver
A remote gdbserver (Yocto userspace).
None
No server (native-host debugging).
Implementations§
Trait Implementations§
Source§impl Clone for DebugServerKind
impl Clone for DebugServerKind
Source§fn clone(&self) -> DebugServerKind
fn clone(&self) -> DebugServerKind
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 moreimpl Copy for DebugServerKind
Source§impl Debug for DebugServerKind
impl Debug for DebugServerKind
impl Eq for DebugServerKind
Source§impl PartialEq for DebugServerKind
impl PartialEq for DebugServerKind
Source§fn eq(&self, other: &DebugServerKind) -> bool
fn eq(&self, other: &DebugServerKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DebugServerKind
impl Serialize for DebugServerKind
impl StructuralPartialEq for DebugServerKind
Auto Trait Implementations§
impl Freeze for DebugServerKind
impl RefUnwindSafe for DebugServerKind
impl Send for DebugServerKind
impl Sync for DebugServerKind
impl Unpin for DebugServerKind
impl UnsafeUnpin for DebugServerKind
impl UnwindSafe for DebugServerKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.