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 feature
IOBluetoothDevice only.Expand description
Provided Methods§
Sourceunsafe fn remoteNameRequestComplete_status(
&self,
device: Option<&IOBluetoothDevice>,
status: c_int,
)
Available on crate feature IOBluetoothObject only.
unsafe fn remoteNameRequestComplete_status( &self, device: Option<&IOBluetoothDevice>, status: c_int, )
IOBluetoothObject only.§Safety
device might not allow None.
Sourceunsafe fn connectionComplete_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, )
IOBluetoothObject only.§Safety
device might not allow None.
Sourceunsafe fn sdpQueryComplete_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, )
IOBluetoothObject only.§Safety
device might not allow None.
Trait Implementations§
Source§impl ProtocolType for dyn IOBluetoothDeviceAsyncCallbacks
Available on crate feature objc2 only.
impl ProtocolType for dyn IOBluetoothDeviceAsyncCallbacks
Available on crate feature
objc2 only.impl<T> ImplementedBy<T> for dyn IOBluetoothDeviceAsyncCallbacks
Available on crate feature
objc2 only.Implementations on Foreign Types§
impl<T> IOBluetoothDeviceAsyncCallbacks for ProtocolObject<T>where
T: ?Sized + IOBluetoothDeviceAsyncCallbacks,
Available on crate feature
objc2 only.