pub struct Stream<'d, D: Driver<'d>> { /* private fields */ }
Expand description
Used for reading audio frames.
Implementations§
Source§impl<'d, D: Driver<'d>> Stream<'d, D>
impl<'d, D: Driver<'d>> Stream<'d, D>
Sourcepub async fn read_packet(
&mut self,
data: &mut [u8],
) -> Result<usize, EndpointError>
pub async fn read_packet( &mut self, data: &mut [u8], ) -> Result<usize, EndpointError>
Reads a single packet from the OUT endpoint
Sourcepub async fn wait_connection(&mut self)
pub async fn wait_connection(&mut self)
Waits for the USB host to enable this interface
Auto Trait Implementations§
impl<'d, D> Freeze for Stream<'d, D>
impl<'d, D> RefUnwindSafe for Stream<'d, D>
impl<'d, D> Send for Stream<'d, D>
impl<'d, D> Sync for Stream<'d, D>
impl<'d, D> Unpin for Stream<'d, D>
impl<'d, D> UnwindSafe for Stream<'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