pub enum Response<R>where
R: PhyRxTx,{
Idle,
Txing,
Rxing,
TxDone(u32),
RxDone(RxQuality),
Phy(R::PhyResponse),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for Response<R>
impl<R> RefUnwindSafe for Response<R>
impl<R> Send for Response<R>
impl<R> Sync for Response<R>
impl<R> Unpin for Response<R>
impl<R> UnwindSafe for Response<R>
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