pub trait DmaTransferRxTx<BR, BT, T>: Drop {
    fn wait(self) -> (BR, BT, T);
}
Expand description

Trait to be implemented for an in progress dma transfer.

Required Methods

Wait for the transfer to finish.

Implementors