pub struct Sender<'d, D: Driver<'d>> { /* private fields */ }
Expand description
CDC NCM class packet sender.
You can obtain a Sender
with CdcNcmClass::split
Implementations§
Source§impl<'d, D: Driver<'d>> Sender<'d, D>
impl<'d, D: Driver<'d>> Sender<'d, D>
Sourcepub async fn write_packet(&mut self, data: &[u8]) -> Result<(), EndpointError>
pub async fn write_packet(&mut self, data: &[u8]) -> Result<(), EndpointError>
Write a packet.
This waits until the packet is successfully stored in the CDC-NCM endpoint buffers.
Auto Trait Implementations§
impl<'d, D> Freeze for Sender<'d, D>
impl<'d, D> RefUnwindSafe for Sender<'d, D>
impl<'d, D> Send for Sender<'d, D>
impl<'d, D> Sync for Sender<'d, D>
impl<'d, D> Unpin for Sender<'d, D>
impl<'d, D> UnwindSafe for Sender<'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