pub struct UartParts<P, I> {
pub port: P,
pub irq: I,
}Expand description
Independently owned task-side and hard-IRQ endpoints.
Fields§
§port: P§irq: IImplementations§
Auto Trait Implementations§
impl<P, I> Freeze for UartParts<P, I>
impl<P, I> RefUnwindSafe for UartParts<P, I>where
P: RefUnwindSafe,
I: RefUnwindSafe,
impl<P, I> Send for UartParts<P, I>
impl<P, I> Sync for UartParts<P, I>
impl<P, I> Unpin for UartParts<P, I>
impl<P, I> UnsafeUnpin for UartParts<P, I>where
P: UnsafeUnpin,
I: UnsafeUnpin,
impl<P, I> UnwindSafe for UartParts<P, I>where
P: UnwindSafe,
I: 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