Struct stm32_hal2::dma::dma1::C5[][src]

pub struct C5;

Implementations

impl C5[src]

pub fn set_peripheral_address(&mut self, address: u32, inc: bool)[src]

Associated peripheral address

inc indicates whether the address will be incremented after every byte transfer

pub fn set_memory_address(&mut self, address: u32, inc: bool)[src]

address where from/to data will be read/write

inc indicates whether the address will be incremented after every byte transfer

pub fn set_transfer_length(&mut self, len: u16)[src]

Number of bytes to transfer

pub fn start(&mut self)[src]

Starts the DMA transfer

pub fn stop(&mut self)[src]

Stops the DMA transfer

pub fn in_progress(&self) -> bool[src]

Returns true if there’s a transfer in progress

pub fn listen(&mut self, event: Event)[src]

pub fn unlisten(&mut self, event: Event)[src]

Auto Trait Implementations

impl Send for C5

impl Sync for C5

impl Unpin for C5

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.