pub unsafe trait IOBluetoothDeviceAsyncCallbacks {
// Provided methods
unsafe fn remoteNameRequestComplete_status(
&self,
device: Option<&IOBluetoothDevice>,
status: c_int,
)
where Self: Sized + Message { ... }
unsafe fn connectionComplete_status(
&self,
device: Option<&IOBluetoothDevice>,
status: c_int,
)
where Self: Sized + Message { ... }
unsafe fn sdpQueryComplete_status(
&self,
device: Option<&IOBluetoothDevice>,
status: c_int,
)
where Self: Sized + Message { ... }
}Available on crate features
IOBluetoothDevice and objc2 only.Expand description
Provided Methods§
unsafe fn remoteNameRequestComplete_status( &self, device: Option<&IOBluetoothDevice>, status: c_int, )
Available on crate feature
IOBluetoothObject only.unsafe fn connectionComplete_status( &self, device: Option<&IOBluetoothDevice>, status: c_int, )
Available on crate feature
IOBluetoothObject only.unsafe fn sdpQueryComplete_status( &self, device: Option<&IOBluetoothDevice>, status: c_int, )
Available on crate feature
IOBluetoothObject only.