pub trait WithDmaAes<'d, C>where
    C: ChannelTypes,
    <C as ChannelTypes>::P: AesPeripheral,{
    // Required method
    fn with_dma(self, channel: Channel<'d, C>) -> AesDma<'d, C>;
}

Required Methods§

source

fn with_dma(self, channel: Channel<'d, C>) -> AesDma<'d, C>

Implementors§

source§

impl<'d, C> WithDmaAes<'d, C> for Aes<'d>where C: ChannelTypes, <C as ChannelTypes>::P: AesPeripheral,