pub type NfcDeviceReset = Option<unsafe extern "C" fn(data: *mut NfcDeviceData)>;Expand description
Reset the NFC device data instance.
The behaviour is protocol-specific. Usually, required fields are zeroed or set to their initial values.
§Arguments
data(direction in, out) - pointer to the instance to be reset.
Aliased Type§
pub enum NfcDeviceReset {
None,
Some(unsafe extern "C" fn(*mut c_void)),
}