[][src]Struct stm32f1xx_hal::dma::RxDma

pub struct RxDma<PAYLOAD, RXCH> {
    pub channel: RXCH,
    // some fields omitted
}

DMA Receiver

Fields

channel: RXCH

Methods

impl<PINS> RxDma<AdcPayload<PINS, MODE>, C1> where
    Self: TransferPayload
[src]

pub fn split(self) -> (Adc<ADC1>, PINS, C1)[src]

impl<PINS> RxDma<AdcPayload<PINS, MODE>, C1> where
    Self: TransferPayload
[src]

pub fn split(self) -> (Adc<ADC1>, PINS, C1)[src]

impl RxDma<Rx<USART1>, C5>[src]

pub fn split(self) -> (Rx<USART1>, C5)[src]

impl RxDma<Rx<USART2>, C6>[src]

pub fn split(self) -> (Rx<USART2>, C6)[src]

impl RxDma<Rx<USART3>, C3>[src]

pub fn split(self) -> (Rx<USART3>, C3)[src]

Auto Trait Implementations

impl<PAYLOAD, RXCH> Send for RxDma<PAYLOAD, RXCH> where
    PAYLOAD: Send,
    RXCH: Send

impl<PAYLOAD, RXCH> Sync for RxDma<PAYLOAD, RXCH> where
    PAYLOAD: Sync,
    RXCH: Sync

impl<PAYLOAD, RXCH> Unpin for RxDma<PAYLOAD, RXCH> where
    PAYLOAD: Unpin,
    RXCH: Unpin

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.