[][src]Enum btle::hci::OGF

#[repr(u8)]
pub enum OGF {
    NOP,
    LinkControl,
    LinkPolicy,
    HCIControlBaseband,
    InformationalParameters,
    StatusParameters,
    Testing,
    LEController,
    VendorSpecific,
}

6 bit OGF. (OpCode Ground Field)

Variants

NOP
LinkControl
LinkPolicy
HCIControlBaseband
InformationalParameters
StatusParameters
Testing
LEController
VendorSpecific

Trait Implementations

impl Clone for OGF[src]

impl Copy for OGF[src]

impl Debug for OGF[src]

impl Default for OGF[src]

impl Eq for OGF[src]

impl From<OGF> for u8[src]

impl Hash for OGF[src]

impl Ord for OGF[src]

impl PartialEq<OGF> for OGF[src]

impl PartialOrd<OGF> for OGF[src]

impl StructuralEq for OGF[src]

impl StructuralPartialEq for OGF[src]

impl TryFrom<u8> for OGF[src]

type Error = HCIConversionError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for OGF

impl Send for OGF

impl Sync for OGF

impl Unpin for OGF

impl UnwindSafe for OGF

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