#[repr(C)]pub struct bt_le_per_adv_param {
pub interval_min: u16,
pub interval_max: u16,
pub options: u32,
}
Fields§
§interval_min: u16
@brief Minimum Periodic Advertising Interval (N * 1.25 ms)
Shall be greater or equal to BT_GAP_PER_ADV_MIN_INTERVAL and less or equal to interval_max.
interval_max: u16
@brief Maximum Periodic Advertising Interval (N * 1.25 ms)
Shall be less or equal to BT_GAP_PER_ADV_MAX_INTERVAL and greater or equal to interval_min.
options: u32
Bit-field of periodic advertising options
Trait Implementations§
Auto Trait Implementations§
impl Freeze for bt_le_per_adv_param
impl RefUnwindSafe for bt_le_per_adv_param
impl Send for bt_le_per_adv_param
impl Sync for bt_le_per_adv_param
impl Unpin for bt_le_per_adv_param
impl UnwindSafe for bt_le_per_adv_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