#[repr(u8)]pub enum BeaconOrder {
Order(u8),
OnDemand,
}Expand description
Indicates the frequency at which the beacon is transmitted.
Variants§
Order(u8)
The beacon is transmitted at an interval:
base_super_frame_duration * 2^{beacon_order}.
OnDemand
The beacon is transmitted on demand.
Trait Implementations§
Source§impl Clone for BeaconOrder
impl Clone for BeaconOrder
Source§fn clone(&self) -> BeaconOrder
fn clone(&self) -> BeaconOrder
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 moreSource§impl Debug for BeaconOrder
impl Debug for BeaconOrder
Source§impl From<BeaconOrder> for u8
impl From<BeaconOrder> for u8
Source§fn from(value: BeaconOrder) -> Self
fn from(value: BeaconOrder) -> Self
Converts to this type from the input type.
Source§impl From<u8> for BeaconOrder
impl From<u8> for BeaconOrder
Source§impl PartialEq for BeaconOrder
impl PartialEq for BeaconOrder
impl Copy for BeaconOrder
impl Eq for BeaconOrder
impl StructuralPartialEq for BeaconOrder
Auto Trait Implementations§
impl Freeze for BeaconOrder
impl RefUnwindSafe for BeaconOrder
impl Send for BeaconOrder
impl Sync for BeaconOrder
impl Unpin for BeaconOrder
impl UnwindSafe for BeaconOrder
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