NfcDeviceCopy

Type Alias NfcDeviceCopy 

Source
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)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut c_void, *const c_void))

Some value of type T.