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§
Source§impl Clone for DescriptorInfo
impl Clone for DescriptorInfo
Source§fn clone(&self) -> DescriptorInfo
fn clone(&self) -> DescriptorInfo
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 Debug for DescriptorInfo
impl Debug for DescriptorInfo
Source§impl PartialEq for DescriptorInfo
impl PartialEq for DescriptorInfo
impl Eq for DescriptorInfo
impl StructuralPartialEq for DescriptorInfo
Auto Trait Implementations§
impl Freeze for DescriptorInfo
impl RefUnwindSafe for DescriptorInfo
impl Send for DescriptorInfo
impl Sync for DescriptorInfo
impl Unpin for DescriptorInfo
impl UnwindSafe for DescriptorInfo
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