pub unsafe trait IOBluetoothL2CAPChannelDelegate {
// Provided methods
unsafe fn l2capChannelData_data_length(
&self,
l2cap_channel: Option<&IOBluetoothL2CAPChannel>,
data_pointer: *mut c_void,
data_length: usize,
)
where Self: Sized + Message { ... }
unsafe fn l2capChannelOpenComplete_status(
&self,
l2cap_channel: Option<&IOBluetoothL2CAPChannel>,
error: c_int,
)
where Self: Sized + Message { ... }
unsafe fn l2capChannelClosed(
&self,
l2cap_channel: Option<&IOBluetoothL2CAPChannel>,
)
where Self: Sized + Message { ... }
unsafe fn l2capChannelReconfigured(
&self,
l2cap_channel: Option<&IOBluetoothL2CAPChannel>,
)
where Self: Sized + Message { ... }
unsafe fn l2capChannelWriteComplete_refcon_status(
&self,
l2cap_channel: Option<&IOBluetoothL2CAPChannel>,
refcon: *mut c_void,
error: c_int,
)
where Self: Sized + Message { ... }
unsafe fn l2capChannelQueueSpaceAvailable(
&self,
l2cap_channel: Option<&IOBluetoothL2CAPChannel>,
)
where Self: Sized + Message { ... }
}Available on crate features
IOBluetoothL2CAPChannel and objc2 only.Expand description
Provided Methods§
unsafe fn l2capChannelData_data_length( &self, l2cap_channel: Option<&IOBluetoothL2CAPChannel>, data_pointer: *mut c_void, data_length: usize, )
Available on crate feature
IOBluetoothObject only.unsafe fn l2capChannelOpenComplete_status( &self, l2cap_channel: Option<&IOBluetoothL2CAPChannel>, error: c_int, )
Available on crate feature
IOBluetoothObject only.unsafe fn l2capChannelClosed( &self, l2cap_channel: Option<&IOBluetoothL2CAPChannel>, )
Available on crate feature
IOBluetoothObject only.unsafe fn l2capChannelReconfigured( &self, l2cap_channel: Option<&IOBluetoothL2CAPChannel>, )
Available on crate feature
IOBluetoothObject only.unsafe fn l2capChannelWriteComplete_refcon_status( &self, l2cap_channel: Option<&IOBluetoothL2CAPChannel>, refcon: *mut c_void, error: c_int, )
Available on crate feature
IOBluetoothObject only.unsafe fn l2capChannelQueueSpaceAvailable( &self, l2cap_channel: Option<&IOBluetoothL2CAPChannel>, )
Available on crate feature
IOBluetoothObject only.