pub struct Uart1Builder {
pub base: UartBase<USART1>,
pub tx: Uart1Tx,
pub rx: Uart1Rx,
pub rts_cts: Option<(Uart1Rts, Uart1Cts)>,
}Expand description
uart1 builder
Fields§
§base: UartBase<USART1>uart1 base data
tx: Uart1Txuart1 tx pin
rx: Uart1Rxuart1 rx pin
rts_cts: Option<(Uart1Rts, Uart1Cts)>use rts cts
Implementations§
Source§impl Uart1Builder
custom method
impl Uart1Builder
custom method
Auto Trait Implementations§
impl Freeze for Uart1Builder
impl RefUnwindSafe for Uart1Builder
impl Send for Uart1Builder
impl Sync for Uart1Builder
impl Unpin for Uart1Builder
impl UnwindSafe for Uart1Builder
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