[][src]Struct bluetooth_mesh::uuid::UUIDFields

pub struct UUIDFields {
    pub time_low: u32,
    pub time_mid: u16,
    pub time_high: u16,
    pub clock_seq: u16,
    pub node: u64,
}

Fields

time_low: u32time_mid: u16time_high: u16clock_seq: u16node: u64

Trait Implementations

impl Clone for UUIDFields[src]

impl Copy for UUIDFields[src]

impl Debug for UUIDFields[src]

impl Eq for UUIDFields[src]

impl Hash for UUIDFields[src]

impl<'_> Into<UUID> for &'_ UUIDFields[src]

impl Into<UUID> for UUIDFields[src]

impl<'_> Into<UUIDFields> for &'_ UUID[src]

impl Into<UUIDFields> for UUID[src]

impl PartialEq<UUIDFields> for UUIDFields[src]

impl StructuralEq for UUIDFields[src]

impl StructuralPartialEq for UUIDFields[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,