pub struct Feedback<'d, D: Driver<'d>> { /* private fields */ }
Expand description
Used for writing sample rate information over the feedback endpoint.
Implementations§
Source§impl<'d, D: Driver<'d>> Feedback<'d, D>
impl<'d, D: Driver<'d>> Feedback<'d, D>
Sourcepub async fn write_packet(&mut self, data: &[u8]) -> Result<(), EndpointError>
pub async fn write_packet(&mut self, data: &[u8]) -> Result<(), EndpointError>
Writes a single packet into the IN 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 Feedback<'d, D>
impl<'d, D> RefUnwindSafe for Feedback<'d, D>
impl<'d, D> Send for Feedback<'d, D>
impl<'d, D> Sync for Feedback<'d, D>
impl<'d, D> Unpin for Feedback<'d, D>
impl<'d, D> UnwindSafe for Feedback<'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