Uart3Trait

Trait Uart3Trait 

Source
pub trait Uart3Trait {
    // Required methods
    fn builder(self, tx: Uart3Tx, rx: Uart3Rx) -> Uart3Builder;
    fn tx_builder(self, tx: Uart3Tx) -> Uart3TxBuilder;
    fn rx_builder(self, rx: Uart3Rx) -> Uart3RxBuilder;
}
Expand description

uart3 trait

Required Methods§

Source

fn builder(self, tx: Uart3Tx, rx: Uart3Rx) -> Uart3Builder

create uart3 builder

Source

fn tx_builder(self, tx: Uart3Tx) -> Uart3TxBuilder

create uart3 tx builder

Source

fn rx_builder(self, rx: Uart3Rx) -> Uart3RxBuilder

create uart3 rx builder

Implementations on Foreign Types§

Source§

impl Uart3Trait for USART3

usart3 support uart3 trait

Implementors§