[][src]Enum bluetooth_mesh::provisioning::generic::GPCF

#[repr(u8)]
pub enum GPCF {
    TransactionStart,
    TransactionAcknowledgment,
    TransactionContinuation,
    BearerControl,
}

Variants

TransactionStart
TransactionAcknowledgment
TransactionContinuation
BearerControl

Methods

impl GPCF[src]

pub fn pack_with(self, six_bits: u8) -> u8[src]

pub fn from_masked_u2(u2: u8) -> Self[src]

pub fn unpack_with(byte: u8) -> (Self, u8)[src]

Trait Implementations

impl Clone for GPCF[src]

impl Copy for GPCF[src]

impl Debug for GPCF[src]

impl Eq for GPCF[src]

impl From<GPCF> for u8[src]

impl Hash for GPCF[src]

impl Ord for GPCF[src]

impl PartialEq<GPCF> for GPCF[src]

impl PartialOrd<GPCF> for GPCF[src]

impl StructuralEq for GPCF[src]

impl StructuralPartialEq for GPCF[src]

Auto Trait Implementations

impl RefUnwindSafe for GPCF

impl Send for GPCF

impl Sync for GPCF

impl Unpin for GPCF

impl UnwindSafe for GPCF

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>,