pub struct DebugPortJtag {
pub tapindex: Option<u32>,
pub idcode: Option<u32>,
pub targetsel: Option<u32>,
pub irlen: Option<u32>,
}Expand description
JTAG debug port parameters
Fields§
§tapindex: Option<u32>TAP index on the JTAG chain
idcode: Option<u32>JTAG IDCODE value
targetsel: Option<u32>Target selection value (SWD-DP multidrop)
irlen: Option<u32>Instruction register length in bits
Trait Implementations§
Source§impl Clone for DebugPortJtag
impl Clone for DebugPortJtag
Source§fn clone(&self) -> DebugPortJtag
fn clone(&self) -> DebugPortJtag
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 DebugPortJtag
impl Debug for DebugPortJtag
Source§impl Default for DebugPortJtag
impl Default for DebugPortJtag
Source§fn default() -> DebugPortJtag
fn default() -> DebugPortJtag
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DebugPortJtag
impl<'de> Deserialize<'de> for DebugPortJtag
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 DebugPortJtag
Source§impl PartialEq for DebugPortJtag
impl PartialEq for DebugPortJtag
Source§impl Serialize for DebugPortJtag
impl Serialize for DebugPortJtag
impl StructuralPartialEq for DebugPortJtag
Auto Trait Implementations§
impl Freeze for DebugPortJtag
impl RefUnwindSafe for DebugPortJtag
impl Send for DebugPortJtag
impl Sync for DebugPortJtag
impl Unpin for DebugPortJtag
impl UnsafeUnpin for DebugPortJtag
impl UnwindSafe for DebugPortJtag
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