trouble-host

Crates

git

Versions

default

Flavors

Enum BluetoothUuid

Source
pub enum BluetoothUuid {
    Uuid16(BluetoothUuid16),
    Uuid32(BluetoothUuid32),
    Uuid128(BluetoothUuid128),
}
Expand description

A Bluetooth UUID of any valid length (16, 32, or 128 bits).

Variants§

§

Uuid16(BluetoothUuid16)

A 16-bit Bluetooth UUID.

§

Uuid32(BluetoothUuid32)

A 32-bit Bluetooth UUID.

§

Uuid128(BluetoothUuid128)

A 128-bit Bluetooth UUID.

Implementations§

Source§

impl BluetoothUuid

Source

pub const fn nil() -> BluetoothUuid

Creates a nil (all-zero) UUID.

Source

pub const fn from_u16(v: u16) -> BluetoothUuid

Creates a BluetoothUuid from a 16-bit unsigned integer.

Source

pub const fn from_u32(v: u32) -> BluetoothUuid

Creates a BluetoothUuid from a 32-bit unsigned integer.

This will create a Uuid16 if the value fits, otherwise it will create a Uuid32.

Source

pub const fn from_u128(v: u128) -> BluetoothUuid

Creates a BluetoothUuid from a 128-bit unsigned integer.

If the 128-bit value corresponds to a standard Bluetooth Base UUID, it will be shortened to a Uuid16 or Uuid32 representation.

Source

pub fn from_le_slice(b: &[u8]) -> Result<BluetoothUuid, InvalidLengthError>

Attempts to create a BluetoothUuid from a little-endian byte slice.

The slice must have a length of 2, 4, or 16 bytes.

Source

pub fn from_be_slice(b: &[u8]) -> Result<BluetoothUuid, InvalidLengthError>

Attempts to create a BluetoothUuid from a big-endian byte slice.

The slice must have a length of 2, 4, or 16 bytes.

Source

pub const fn to_u128(&self) -> u128

Converts any BluetoothUuid variant to its full 128-bit representation.

Source

pub const fn as_le_slice(&self) -> &[u8]

Returns a little-endian byte slice representation of the UUID.

The length of the slice will be 2, 4, or 16 bytes depending on the UUID variant.

Trait Implementations§

Source§

impl AsRef<[u8]> for BluetoothUuid

Source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for BluetoothUuid

Source§

fn clone(&self) -> BluetoothUuid

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BluetoothUuid

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for BluetoothUuid

Source§

fn default() -> BluetoothUuid

Returns the “default value” for a type. Read more
Source§

impl Display for BluetoothUuid

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl From<BluetoothUuid128> for BluetoothUuid

Source§

fn from(value: BluetoothUuid128) -> BluetoothUuid

Converts to this type from the input type.
Source§

impl From<BluetoothUuid16> for BluetoothUuid

Source§

fn from(value: BluetoothUuid16) -> BluetoothUuid

Converts to this type from the input type.
Source§

impl From<BluetoothUuid32> for BluetoothUuid

Source§

fn from(value: BluetoothUuid32) -> BluetoothUuid

Converts to this type from the input type.
Source§

impl From<Uuid> for BluetoothUuid

Source§

fn from(value: Uuid) -> BluetoothUuid

Converts to this type from the input type.
Source§

impl Hash for BluetoothUuid

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for BluetoothUuid

Source§

fn cmp(&self, other: &BluetoothUuid) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for BluetoothUuid

Source§

fn eq(&self, other: &BluetoothUuid) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for BluetoothUuid

Source§

fn partial_cmp(&self, other: &BluetoothUuid) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for BluetoothUuid

Source§

impl Eq for BluetoothUuid

Source§

impl StructuralPartialEq for BluetoothUuid

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.