[][src]Struct probe_rs::probe::daplink::commands::transfer::TransferResponse

pub struct TransferResponse {
    pub transfer_count: u8,
    pub transfer_response: InnerTransferResponse,
    pub td_timestamp: u32,
    pub transfer_data: u32,
}

Fields

transfer_count: u8

Number of transfers: 1 .. 255 that are executed.

transfer_response: InnerTransferResponse

Contains information about last response from target Device.

td_timestamp: u32

Current Test Domain Timer value is added before each Transfer Data word when Transfer Request - bit 7: TD_TimeStamp request is set.

transfer_data: u32

register value or match value in the order of the Transfer Request.

  • for Read Register transfer request: the register value of the CoreSight register.
  • no data is sent for other operations.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.