Struct bluez_async::DescriptorInfo
source · [−]pub struct DescriptorInfo {
pub id: DescriptorId,
pub uuid: Uuid,
}
Expand description
Information about a GATT descriptor on a Bluetooth device.
Fields
id: DescriptorId
An opaque identifier for the descriptor on the device, including a reference to which adapter it was discovered on.
uuid: Uuid
The 128-bit UUID of the descriptor.
Trait Implementations
sourceimpl Clone for DescriptorInfo
impl Clone for DescriptorInfo
sourcefn clone(&self) -> DescriptorInfo
fn clone(&self) -> DescriptorInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DescriptorInfo
impl Debug for DescriptorInfo
sourceimpl PartialEq<DescriptorInfo> for DescriptorInfo
impl PartialEq<DescriptorInfo> for DescriptorInfo
sourcefn eq(&self, other: &DescriptorInfo) -> bool
fn eq(&self, other: &DescriptorInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescriptorInfo) -> bool
fn ne(&self, other: &DescriptorInfo) -> bool
This method tests for !=
.
impl Eq for DescriptorInfo
impl StructuralEq for DescriptorInfo
impl StructuralPartialEq for DescriptorInfo
Auto Trait Implementations
impl RefUnwindSafe for DescriptorInfo
impl Send for DescriptorInfo
impl Sync for DescriptorInfo
impl Unpin for DescriptorInfo
impl UnwindSafe for DescriptorInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more