pub struct Scanner<'d, C: Controller> { /* private fields */ }
Expand description
A scanner that wraps a central to provide additional functionality around BLE scanning.
The buffer size can be tuned if in a noisy environment that returns a lot of results.
Implementations§
Source§impl<'d, C: Controller> Scanner<'d, C>
impl<'d, C: Controller> Scanner<'d, C>
Sourcepub fn into_inner(self) -> Central<'d, C>
pub fn into_inner(self) -> Central<'d, C>
Retrieve the underlying central
Sourcepub async fn scan_ext(
&mut self,
config: &ScanConfig<'_>,
) -> Result<ScanSession<'_, true>, BleHostError<C::Error>>
pub async fn scan_ext( &mut self, config: &ScanConfig<'_>, ) -> Result<ScanSession<'_, true>, BleHostError<C::Error>>
Performs an extended BLE scan, return a report for discovering peripherals.
Scan is stopped when a report is received. Call this method repeatedly to continue scanning.
Sourcepub async fn scan(
&mut self,
config: &ScanConfig<'_>,
) -> Result<ScanSession<'_, false>, BleHostError<C::Error>>
pub async fn scan( &mut self, config: &ScanConfig<'_>, ) -> Result<ScanSession<'_, false>, BleHostError<C::Error>>
Performs a BLE scan, return a report for discovering peripherals.
Scan is stopped when a report is received. Call this method repeatedly to continue scanning.
Auto Trait Implementations§
impl<'d, C> Freeze for Scanner<'d, C>
impl<'d, C> !RefUnwindSafe for Scanner<'d, C>
impl<'d, C> !Send for Scanner<'d, C>
impl<'d, C> !Sync for Scanner<'d, C>
impl<'d, C> Unpin for Scanner<'d, C>
impl<'d, C> !UnwindSafe for Scanner<'d, C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more