pub struct FuriHalNfcTxRxContext {
    pub tx_data: [u8; 512],
    pub tx_parity: [u8; 64],
    pub tx_bits: u16,
    pub rx_data: [u8; 512],
    pub rx_parity: [u8; 64],
    pub rx_bits: u16,
    pub tx_rx_type: FuriHalNfcTxRxType,
    pub nfca_signal: *mut NfcaSignal,
    pub sniff_tx: Option<unsafe extern "C" fn(*mut u8, u16, bool, *mut c_void)>,
    pub sniff_rx: Option<unsafe extern "C" fn(*mut u8, u16, bool, *mut c_void)>,
    pub sniff_context: *mut c_void,
}

Fields

tx_data: [u8; 512]tx_parity: [u8; 64]tx_bits: u16rx_data: [u8; 512]rx_parity: [u8; 64]rx_bits: u16tx_rx_type: FuriHalNfcTxRxTypenfca_signal: *mut NfcaSignalsniff_tx: Option<unsafe extern "C" fn(*mut u8, u16, bool, *mut c_void)>sniff_rx: Option<unsafe extern "C" fn(*mut u8, u16, bool, *mut c_void)>sniff_context: *mut c_void

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.