pub trait _esp_hal_spi_dma_WithDmaSpi2<'d, T, RX, TX, P, M>where
T: Instance + Spi2Instance,
TX: Tx,
RX: Rx,
P: SpiPeripheral,
M: DuplexMode,{
// Required method
fn with_dma(
self,
channel: Channel<TX, RX, P>
) -> SpiDma<'d, T, TX, RX, P, M>;
}