pub trait TxChannelFor<PER: DmaEligible>: DmaChannelConvert<PeripheralTxChannel<PER>> { }Expand description
Trait implemented for the TX half of split DMA channels that are compatible with a particular peripheral. Accepts complete DMA channels or split halves.
This trait is similar in use to DmaChannelFor.
You can use this in places where a peripheral driver would expect a
DmaTxChannel implementation.
Implementors§
impl<P, TX> TxChannelFor<P> for TXwhere
    P: DmaEligible,
    TX: DmaChannelConvert<PeripheralTxChannel<P>>,
Available on crate feature 
unstable only.