#[repr(C)]
pub struct DebugConnectParameters {
Show 17 fields pub dbg_port: DebugPort, pub index: c_int, pub serial_number: [c_char; 33], pub firmware_version: [c_char; 20], pub target_voltage: [c_char; 5], pub access_port_number: c_int, pub access_port: c_int, pub connection_mode: DebugConnectMode, pub reset_mode: DebugResetMode, pub is_old_firmware: c_int, pub freq: Frequencies, pub frequency: c_int, pub is_bridge: c_int, pub shared: c_int, pub board: [c_char; 100], pub dbg_sleep: c_int, pub speed: c_int,
}

Fields§

§dbg_port: DebugPort§index: c_int§serial_number: [c_char; 33]§firmware_version: [c_char; 20]§target_voltage: [c_char; 5]§access_port_number: c_int§access_port: c_int§connection_mode: DebugConnectMode§reset_mode: DebugResetMode§is_old_firmware: c_int§freq: Frequencies§frequency: c_int§is_bridge: c_int§shared: c_int§board: [c_char; 100]§dbg_sleep: c_int§speed: c_int

Trait Implementations§

source§

impl Clone for DebugConnectParameters

source§

fn clone(&self) -> DebugConnectParameters

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DebugConnectParameters

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for DebugConnectParameters

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.