pub struct Receiver<'d, D: Driver<'d>> { /* private fields */ }
Expand description
CDC NCM class packet receiver.
You can obtain a Receiver
with CdcNcmClass::split
Implementations§
Source§impl<'d, D: Driver<'d>> Receiver<'d, D>
impl<'d, D: Driver<'d>> Receiver<'d, D>
Sourcepub async fn read_packet(
&mut self,
buf: &mut [u8],
) -> Result<usize, EndpointError>
pub async fn read_packet( &mut self, buf: &mut [u8], ) -> Result<usize, EndpointError>
Write a network packet.
This waits until a packet is successfully received from the endpoint buffers.
Sourcepub async fn wait_connection(&mut self) -> Result<(), EndpointError>
pub async fn wait_connection(&mut self) -> Result<(), EndpointError>
Waits for the USB host to enable this interface
Auto Trait Implementations§
impl<'d, D> Freeze for Receiver<'d, D>
impl<'d, D> RefUnwindSafe for Receiver<'d, D>
impl<'d, D> Send for Receiver<'d, D>
impl<'d, D> Sync for Receiver<'d, D>
impl<'d, D> Unpin for Receiver<'d, D>
impl<'d, D> UnwindSafe for Receiver<'d, D>
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