pub enum PhyUpdateResult {
Success {
tx_phy: BlePhy,
rx_phy: BlePhy,
},
Rejected,
NotSupported,
Timeout,
Failed,
}Expand description
PHY update result
Variants§
Success
PHY update succeeded
Rejected
PHY update rejected by peer
NotSupported
PHY update not supported
Timeout
PHY update timed out
Failed
PHY update failed
Trait Implementations§
Source§impl Clone for PhyUpdateResult
impl Clone for PhyUpdateResult
Source§fn clone(&self) -> PhyUpdateResult
fn clone(&self) -> PhyUpdateResult
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 PhyUpdateResult
impl Debug for PhyUpdateResult
Source§impl PartialEq for PhyUpdateResult
impl PartialEq for PhyUpdateResult
impl Copy for PhyUpdateResult
impl Eq for PhyUpdateResult
impl StructuralPartialEq for PhyUpdateResult
Auto Trait Implementations§
impl Freeze for PhyUpdateResult
impl RefUnwindSafe for PhyUpdateResult
impl Send for PhyUpdateResult
impl Sync for PhyUpdateResult
impl Unpin for PhyUpdateResult
impl UnwindSafe for PhyUpdateResult
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