[][src]Enum bluez::client::PhyFlag

#[repr(u32)]
pub enum PhyFlag {
    BR1M1Slot,
    BR1M3Slot,
    BR1M5Slot,
    EDR2M1Slot,
    EDR2M3Slot,
    EDR2M5Slot,
    EDR3M1Slot,
    EDR3M3Slot,
    EDR3M5Slot,
    LE1MTx,
    LE1MRx,
    LE2MTx,
    LE2MRx,
    LECodedTx,
    LECodedRx,
}

Variants

BR1M1Slot
BR1M3Slot
BR1M5Slot
EDR2M1Slot
EDR2M3Slot
EDR2M5Slot
EDR3M1Slot
EDR3M3Slot
EDR3M5Slot
LE1MTx
LE1MRx
LE2MTx
LE2MRx
LECodedTx
LECodedRx

Trait Implementations

impl BitAnd<PhyFlag> for PhyFlag[src]

type Output = BitFlags<PhyFlag>

The resulting type after applying the & operator.

impl BitOr<PhyFlag> for PhyFlag[src]

type Output = BitFlags<PhyFlag>

The resulting type after applying the | operator.

impl BitXor<PhyFlag> for PhyFlag[src]

type Output = BitFlags<PhyFlag>

The resulting type after applying the ^ operator.

impl Clone for PhyFlag[src]

impl Copy for PhyFlag[src]

impl Debug for PhyFlag[src]

impl Eq for PhyFlag[src]

impl Not for PhyFlag[src]

type Output = BitFlags<PhyFlag>

The resulting type after applying the ! operator.

impl PartialEq<PhyFlag> for PhyFlag[src]

impl RawBitFlags for PhyFlag[src]

type Type = u32

The underlying integer type.

impl StructuralEq for PhyFlag[src]

impl StructuralPartialEq for PhyFlag[src]

Auto Trait Implementations

impl RefUnwindSafe for PhyFlag

impl Send for PhyFlag

impl Sync for PhyFlag

impl Unpin for PhyFlag

impl UnwindSafe for PhyFlag

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.