[][src]Trait lpc82x_hal::dma::Dest

pub trait Dest {
    type Error;
    fn wait(&mut self) -> Result<(), Self::Error>;
fn end_addr(&mut self) -> *mut u8; }

A destination for a DMA transfer

Associated Types

type Error

The error that can occur while waiting for the destination to be idle

Loading content...

Required methods

fn wait(&mut self) -> Result<(), Self::Error>

Wait for the destination to be idle

fn end_addr(&mut self) -> *mut u8

The last byte of the destination's memory range

Loading content...

Implementors

impl<'usart, UsartX> Dest for Transmitter<'usart, UsartX> where
    UsartX: Peripheral
[src]

type Error = Void

Loading content...