Skip to main content

usb_if/host/
mod.rs

1use crate::transfer::{Recipient, Request, RequestType};
2
3pub mod hub;
4
5#[derive(Debug, Clone)]
6pub struct ControlSetup {
7    pub request_type: RequestType,
8    pub recipient: Recipient,
9    pub request: Request,
10    pub value: u16,
11    pub index: u16,
12}