Enum kernel::hil::usb::CtrlInResult [] [src]

pub enum CtrlInResult {
    Packet(usize, bool),
    Delay,
    Error,
}

Variants

A packet of the given size was written into the endpoint buffer

The client is not yet able to provide data to the host, but may be able to in the future. This result causes the controller to send a NAK token to the host.

The client does not support the request. This result causes the controller to send a STALL token to the host.