pub struct UartPollRx<U, W> { /* private fields */ }Implementations§
Source§impl<U: UartPeriph, W: Waiter> UartPollRx<U, W>
impl<U: UartPeriph, W: Waiter> UartPollRx<U, W>
Trait Implementations§
Source§impl<U: UartPeriph, W: Waiter> ErrorType for UartPollRx<U, W>
impl<U: UartPeriph, W: Waiter> ErrorType for UartPollRx<U, W>
Source§impl<U: UartPeriph, W: Waiter> ErrorType for UartPollRx<U, W>
impl<U: UartPeriph, W: Waiter> ErrorType for UartPollRx<U, W>
Source§impl<U: UartPeriph, W: Waiter> Read<u16> for UartPollRx<U, W>
impl<U: UartPeriph, W: Waiter> Read<u16> for UartPollRx<U, W>
Source§impl<U: UartPeriph, W: Waiter> Read for UartPollRx<U, W>
impl<U: UartPeriph, W: Waiter> Read for UartPollRx<U, W>
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, W> Freeze for UartPollRx<U, W>
impl<U, W> RefUnwindSafe for UartPollRx<U, W>where
U: RefUnwindSafe,
W: RefUnwindSafe,
impl<U, W> Send for UartPollRx<U, W>
impl<U, W> Sync for UartPollRx<U, W>
impl<U, W> Unpin for UartPollRx<U, W>
impl<U, W> UnwindSafe for UartPollRx<U, W>where
U: UnwindSafe,
W: 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