[][src]Struct rubble::link::filter::AdvFilter

pub struct AdvFilter<S: AddressFilter, C: AddressFilter> { /* fields omitted */ }

Advertising filter policy. Governs which devices may scan and connect to an advertising device.

Methods

impl<S: AddressFilter, C: AddressFilter> AdvFilter<S, C>[src]

pub fn new(scan: S, connect: C) -> Self[src]

Creates a new filter policy from behaviors for scan and connect requests.

Parameters

  • scan: An AddressFilter governing which devices may scan this device.
  • connect: An AddressFilter governing which devices may connect to this device.

pub fn may_scan(&self, device: DeviceAddress) -> bool[src]

pub fn may_connect(&self, device: DeviceAddress) -> bool[src]

Auto Trait Implementations

impl<S, C> Send for AdvFilter<S, C> where
    C: Send,
    S: Send

impl<S, C> Sync for AdvFilter<S, C> where
    C: Sync,
    S: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]