pub struct Pins<TX, RX>{
pub tx: TX,
pub rx: RX,
}Expand description
LPUART pins.
Fields§
§tx: TXTransfer pin.
rx: RXReceive pin.
Auto Trait Implementations§
impl<TX, RX> Freeze for Pins<TX, RX>
impl<TX, RX> RefUnwindSafe for Pins<TX, RX>where
TX: RefUnwindSafe,
RX: RefUnwindSafe,
impl<TX, RX> Send for Pins<TX, RX>
impl<TX, RX> Sync for Pins<TX, RX>
impl<TX, RX> Unpin for Pins<TX, RX>
impl<TX, RX> UnwindSafe for Pins<TX, RX>where
TX: UnwindSafe,
RX: UnwindSafe,
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