pub enum Phy {
Le1M,
Le2M,
LeCoded,
}
Expand description
PHY types supported by Bluetooth LE.
See Vol 1, Part A, Section 3.2.2 of the spec.
Variants§
Le1M
The LE 1M PHY supports a datarate of 1 MBit/s.
Le2M
The LE 2M PHY supports a datarate of 2 MBit/s.
LeCoded
The LE Coded PHY supports a datarate of either 125 kBit/s or 500 kBit/s.
Trait Implementations§
impl Copy for Phy
Auto Trait Implementations§
impl Freeze for Phy
impl RefUnwindSafe for Phy
impl Send for Phy
impl Sync for Phy
impl Unpin for Phy
impl UnwindSafe for Phy
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