pub struct DebugInterface {
pub adapter: Option<String>,
pub connector: Option<String>,
}Expand description
Represents a PDSC debugInterface element
Fields§
§adapter: Option<String>Debug adapter type (e.g. CMSIS-DAP, JTAG/SW)
connector: Option<String>Physical connector description
Trait Implementations§
Source§impl Clone for DebugInterface
impl Clone for DebugInterface
Source§fn clone(&self) -> DebugInterface
fn clone(&self) -> DebugInterface
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 moreSource§impl Debug for DebugInterface
impl Debug for DebugInterface
Source§impl Default for DebugInterface
impl Default for DebugInterface
Source§fn default() -> DebugInterface
fn default() -> DebugInterface
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugInterface
impl<'de> Deserialize<'de> for DebugInterface
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
impl Eq for DebugInterface
Source§impl PartialEq for DebugInterface
impl PartialEq for DebugInterface
Source§impl Serialize for DebugInterface
impl Serialize for DebugInterface
impl StructuralPartialEq for DebugInterface
Auto Trait Implementations§
impl Freeze for DebugInterface
impl RefUnwindSafe for DebugInterface
impl Send for DebugInterface
impl Sync for DebugInterface
impl Unpin for DebugInterface
impl UnsafeUnpin for DebugInterface
impl UnwindSafe for DebugInterface
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