pub type NfcDeviceCopy = Option<unsafe extern "C" fn(data: *mut NfcDeviceData, other: *const NfcDeviceData)>;Expand description
Copy source instance’s data into the destination so that they become equal.
§Arguments
data(direction in, out) - pointer to the destination instance.other(direction in) - pointer to the source instance.
Aliased Type§
pub enum NfcDeviceCopy {
None,
Some(unsafe extern "C" fn(*mut c_void, *const c_void)),
}