pub struct Uart3Builder {
pub base: UartBase<USART3>,
pub tx: Uart3Tx,
pub rx: Uart3Rx,
pub rts_cts: Option<(Uart3Rts, Uart3Cts)>,
}Expand description
uart3 builder
Fields§
§base: UartBase<USART3>uart3 base data
tx: Uart3Txuart2 tx pin
rx: Uart3Rxuart2 rx pin
rts_cts: Option<(Uart3Rts, Uart3Cts)>use rts cts
Implementations§
Source§impl Uart3Builder
custom method
impl Uart3Builder
custom method
Auto Trait Implementations§
impl Freeze for Uart3Builder
impl RefUnwindSafe for Uart3Builder
impl Send for Uart3Builder
impl Sync for Uart3Builder
impl Unpin for Uart3Builder
impl UnwindSafe for Uart3Builder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more