pub struct BleScanParams {
pub scan_type: BleScanType,
pub interval: u16,
pub window: u16,
pub own_address_type: BleOwnAddrType,
pub filter_policy: FilterPolicy,
}
Fields§
§scan_type: BleScanType
§interval: u16
§window: u16
Must be shorter than, or equal to the interval.
own_address_type: BleOwnAddrType
§filter_policy: FilterPolicy
Implementations§
Auto Trait Implementations§
impl Freeze for BleScanParams
impl RefUnwindSafe for BleScanParams
impl Send for BleScanParams
impl Sync for BleScanParams
impl Unpin for BleScanParams
impl UnwindSafe for BleScanParams
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