pub struct DebugInfo {
pub net_name: Option<String>,
pub device: Option<String>,
pub arch: Option<String>,
pub probe: Option<String>,
pub serial: Option<String>,
pub backend: Option<String>,
pub connected: bool,
}Expand description
Result of a debug info query.
Fields§
§net_name: Option<String>Net name.
device: Option<String>Resolved device/target type.
arch: Option<String>Target architecture.
probe: Option<String>Probe instrument name.
serial: Option<String>Probe serial.
backend: Option<String>Debug backend ("jlink" or "openocd").
connected: boolWhether a gdbserver/daemon is currently running for this probe.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DebugInfo
impl<'de> Deserialize<'de> for DebugInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DebugInfo
impl RefUnwindSafe for DebugInfo
impl Send for DebugInfo
impl Sync for DebugInfo
impl Unpin for DebugInfo
impl UnsafeUnpin for DebugInfo
impl UnwindSafe for DebugInfo
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