pub struct RxTxDma<PAYLOAD, RXCH, TXCH> {
pub rx_channel: RXCH,
pub tx_channel: TXCH,
/* private fields */
}Expand description
DMA Receiver/Transmitter
Fields§
§rx_channel: RXCH§tx_channel: TXCHImplementations§
Auto Trait Implementations§
impl<PAYLOAD, RXCH, TXCH> Freeze for RxTxDma<PAYLOAD, RXCH, TXCH>
impl<PAYLOAD, RXCH, TXCH> RefUnwindSafe for RxTxDma<PAYLOAD, RXCH, TXCH>
impl<PAYLOAD, RXCH, TXCH> Send for RxTxDma<PAYLOAD, RXCH, TXCH>
impl<PAYLOAD, RXCH, TXCH> Sync for RxTxDma<PAYLOAD, RXCH, TXCH>
impl<PAYLOAD, RXCH, TXCH> Unpin for RxTxDma<PAYLOAD, RXCH, TXCH>
impl<PAYLOAD, RXCH, TXCH> UnwindSafe for RxTxDma<PAYLOAD, RXCH, TXCH>
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