pub enum Uuid {
Uuid16([u8; 2]),
Uuid128([u8; 16]),
}
Expand description
A 16-bit or 128-bit UUID.
Variants§
Implementations§
Trait Implementations§
Source§impl From<BluetoothUuid16> for Uuid
impl From<BluetoothUuid16> for Uuid
Source§fn from(data: BluetoothUuid16) -> Self
fn from(data: BluetoothUuid16) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Uuid
Auto Trait Implementations§
impl Freeze for Uuid
impl RefUnwindSafe for Uuid
impl Send for Uuid
impl Sync for Uuid
impl Unpin for Uuid
impl UnwindSafe for Uuid
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