Trait stm32f7xx_hal::dma::Target[][src]

pub trait Target {
    type Instance: Deref<Target = RegisterBlock>;
    type Stream: Stream;
    type Channel: Channel;

    const INTERRUPT: Interrupt;
}
Expand description

Implemented for all peripheral APIs that support DMA transfers

This is an internal trait. End users neither need to implement it, nor use it directly.

Associated Types

Associated Constants

Implementors