pub struct HalAnchorPeriod {
pub status: Status,
pub anchor_interval: Duration,
pub max_slot: Duration,
}
Expand description
Parameters returned by the HAL Get Anchor Period command.
Fields§
§status: Status
Did the command fail, and if so, how?
anchor_interval: Duration
Duration between the beginnings of sniff anchor points.
max_slot: Duration
Maximum available size that can be allocated to a new connection slot.
Trait Implementations§
Source§impl Clone for HalAnchorPeriod
impl Clone for HalAnchorPeriod
Source§fn clone(&self) -> HalAnchorPeriod
fn clone(&self) -> HalAnchorPeriod
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for HalAnchorPeriod
impl RefUnwindSafe for HalAnchorPeriod
impl Send for HalAnchorPeriod
impl Sync for HalAnchorPeriod
impl Unpin for HalAnchorPeriod
impl UnwindSafe for HalAnchorPeriod
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