#[repr(C)]pub struct bt_br_page_scan_param {
pub interval: u16,
pub window: u16,
pub type_: u32,
}Expand description
Page scan parameters.
Fields§
§interval: u16Page scan interval in 0.625 ms units Range: 0x0012 to 0x1000.
According to the Bluetooth Core Specification, only even values are used by the controller; if an odd value is provided, the controller may ignore the LSB or round the value. Applications should use even values to be compliant.
window: u16Page scan window in 0.625 ms units Range: 0x0011 to 0x1000.
type_: u32Page scan type.
Trait Implementations§
Source§impl Debug for bt_br_page_scan_param
impl Debug for bt_br_page_scan_param
Source§impl Default for bt_br_page_scan_param
impl Default for bt_br_page_scan_param
Source§fn default() -> bt_br_page_scan_param
fn default() -> bt_br_page_scan_param
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for bt_br_page_scan_param
impl RefUnwindSafe for bt_br_page_scan_param
impl Send for bt_br_page_scan_param
impl Sync for bt_br_page_scan_param
impl Unpin for bt_br_page_scan_param
impl UnwindSafe for bt_br_page_scan_param
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