#[repr(u8)]pub enum PhySet {
M1 = 1,
M2 = 2,
M1M2 = 3,
Coded = 4,
M1Coded = 5,
M2Coded = 6,
M1M2Coded = 7,
}
Expand description
PHYs to scan on.
Variants§
M1 = 1
1Mbps phy
M2 = 2
2Mbps phy
M1M2 = 3
1Mbps + 2Mbps phys
Coded = 4
Coded phy (125kbps, S=8)
M1Coded = 5
1Mbps and Coded phys
M2Coded = 6
2Mbps and Coded phys
M1M2Coded = 7
1Mbps, 2Mbps and Coded phys
Trait Implementations§
impl Copy for PhySet
impl Eq for PhySet
impl StructuralPartialEq for PhySet
Auto Trait Implementations§
impl Freeze for PhySet
impl RefUnwindSafe for PhySet
impl Send for PhySet
impl Sync for PhySet
impl Unpin for PhySet
impl UnwindSafe for PhySet
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