#[repr(C)]pub struct IOBluetoothDeviceSearchAttributes {
pub options: IOBluetoothDeviceSearchOptions,
pub maxResults: u32,
pub deviceAttributeCount: u32,
pub attributeList: *mut IOBluetoothDeviceSearchDeviceAttributes,
}Available on crate features
Bluetooth and IOBluetoothUserLib only.Expand description
You can search for general device classes and service classes, or you can search for a specific device address or name. If you pass NULL as the attribute structure, you will get ALL devices in the vicinity found during a search. Note that passing a zeroed out block of attributes is NOT equivalent to passing in NULL!
See also Apple’s documentation
Fields§
§options: IOBluetoothDeviceSearchOptions§maxResults: u32§deviceAttributeCount: u32§attributeList: *mut IOBluetoothDeviceSearchDeviceAttributesTrait Implementations§
Source§impl Clone for IOBluetoothDeviceSearchAttributes
impl Clone for IOBluetoothDeviceSearchAttributes
Source§fn clone(&self) -> IOBluetoothDeviceSearchAttributes
fn clone(&self) -> IOBluetoothDeviceSearchAttributes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Encode for IOBluetoothDeviceSearchAttributes
Available on crate feature objc2 only.
impl Encode for IOBluetoothDeviceSearchAttributes
Available on crate feature
objc2 only.Source§impl PartialEq for IOBluetoothDeviceSearchAttributes
impl PartialEq for IOBluetoothDeviceSearchAttributes
Source§fn eq(&self, other: &IOBluetoothDeviceSearchAttributes) -> bool
fn eq(&self, other: &IOBluetoothDeviceSearchAttributes) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RefEncode for IOBluetoothDeviceSearchAttributes
Available on crate feature objc2 only.
impl RefEncode for IOBluetoothDeviceSearchAttributes
Available on crate feature
objc2 only.Source§const ENCODING_REF: Encoding
const ENCODING_REF: Encoding
The Objective-C type-encoding for a reference of this type. Read more
impl Copy for IOBluetoothDeviceSearchAttributes
impl StructuralPartialEq for IOBluetoothDeviceSearchAttributes
Auto Trait Implementations§
impl Freeze for IOBluetoothDeviceSearchAttributes
impl RefUnwindSafe for IOBluetoothDeviceSearchAttributes
impl !Send for IOBluetoothDeviceSearchAttributes
impl !Sync for IOBluetoothDeviceSearchAttributes
impl Unpin for IOBluetoothDeviceSearchAttributes
impl UnwindSafe for IOBluetoothDeviceSearchAttributes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> EncodeArgument for Twhere
T: Encode,
impl<T> EncodeArgument for Twhere
T: Encode,
Source§const ENCODING_ARGUMENT: Encoding = T::ENCODING
const ENCODING_ARGUMENT: Encoding = T::ENCODING
The Objective-C type-encoding for this type.
Source§impl<T> EncodeReturn for Twhere
T: Encode,
impl<T> EncodeReturn for Twhere
T: Encode,
Source§const ENCODING_RETURN: Encoding = T::ENCODING
const ENCODING_RETURN: Encoding = T::ENCODING
The Objective-C type-encoding for this type.