Enum rusb::RequestType
source · pub enum RequestType {
Standard,
Class,
Vendor,
Reserved,
}
Expand description
Types of control transfers.
Variants§
Standard
Requests that are defined by the USB standard.
Class
Requests that are defined by a device class, e.g., HID.
Vendor
Vendor-specific requests.
Reserved
Reserved for future use.
Trait Implementations§
source§impl Clone for RequestType
impl Clone for RequestType
source§fn clone(&self) -> RequestType
fn clone(&self) -> RequestType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RequestType
impl Debug for RequestType
source§impl Hash for RequestType
impl Hash for RequestType
source§impl PartialEq<RequestType> for RequestType
impl PartialEq<RequestType> for RequestType
source§fn eq(&self, other: &RequestType) -> bool
fn eq(&self, other: &RequestType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.