[][src]Enum bluetooth_hci::host::TestPacketPayload

#[repr(u8)]pub enum TestPacketPayload {
    PrbS9,
    Nibbles10,
    Bits10,
    PrbS15,
    All1,
    All0,
    Nibbles01,
    Bits01,
}

Possible values of the payload parameter for the le_transmitter_test command.

Variants

PrbS9

Pseudo-Random bit sequence 9

Nibbles10

Pattern of alternating bits `11110000

Bits10

Pattern of alternating bits `10101010'

PrbS15

Pseudo-Random bit sequence 15

All1

Pattern of All `1' bits

All0

Pattern of All `0' bits

Nibbles01

Pattern of alternating bits `00001111

Bits01

Pattern of alternating bits `0101'

Trait Implementations

impl Clone for TestPacketPayload[src]

impl Copy for TestPacketPayload[src]

impl Debug for TestPacketPayload[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, 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.