[][src]Enum bluetooth_hci::host::ScanType

#[repr(u8)]pub enum ScanType {
    Passive,
    Active,
}

Types of scan to perform.

See ScanParameters and le_set_scan_parameters.

Variants

Passive

Passive Scanning. No scanning PDUs shall be sent (default).

Active

Active scanning. Scanning PDUs may be sent.

Trait Implementations

impl Clone for ScanType[src]

impl Copy for ScanType[src]

impl Debug for ScanType[src]

impl PartialEq<ScanType> for ScanType[src]

impl StructuralPartialEq for ScanType[src]

Auto Trait Implementations

impl Send for ScanType

impl Sync for ScanType

impl Unpin for ScanType

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.