[][src]Struct stm32f1xx_hal::dma::TxDma

pub struct TxDma<PAYLOAD, TXCH> {
    pub channel: TXCH,
    // some fields omitted
}

DMA Transmitter

Fields

channel: TXCH

Implementations

impl TxDma<Tx<USART1>, C4>[src]

pub fn split(self) -> (Tx<USART1>, C4)[src]

impl TxDma<Tx<USART2>, C7>[src]

pub fn split(self) -> (Tx<USART2>, C7)[src]

impl TxDma<Tx<USART3>, C2>[src]

pub fn split(self) -> (Tx<USART3>, C2)[src]

Auto Trait Implementations

impl<PAYLOAD, TXCH> Send for TxDma<PAYLOAD, TXCH> where
    PAYLOAD: Send,
    TXCH: Send

impl<PAYLOAD, TXCH> Sync for TxDma<PAYLOAD, TXCH> where
    PAYLOAD: Sync,
    TXCH: Sync

impl<PAYLOAD, TXCH> Unpin for TxDma<PAYLOAD, TXCH> where
    PAYLOAD: Unpin,
    TXCH: 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.