pub struct UartInterruptRx<U> { /* private fields */ }Trait Implementations§
Source§impl<U: UartPeriph> ErrorType for UartInterruptRx<U>
impl<U: UartPeriph> ErrorType for UartInterruptRx<U>
Source§impl<U> Read for UartInterruptRx<U>where
U: UartPeriph,
impl<U> Read for UartInterruptRx<U>where
U: UartPeriph,
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error>
fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error>
Read some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Source§fn read_exact(
&mut self,
buf: &mut [u8],
) -> Result<(), ReadExactError<Self::Error>>
fn read_exact( &mut self, buf: &mut [u8], ) -> Result<(), ReadExactError<Self::Error>>
Read the exact number of bytes required to fill
buf. Read moreAuto Trait Implementations§
impl<U> !Freeze for UartInterruptRx<U>
impl<U> !RefUnwindSafe for UartInterruptRx<U>
impl<U> Send for UartInterruptRx<U>where
U: Send,
impl<U> !Sync for UartInterruptRx<U>
impl<U> Unpin for UartInterruptRx<U>where
U: Unpin,
impl<U> UnwindSafe for UartInterruptRx<U>where
U: 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