Struct windows_sys::Win32::Devices::Usb::USBD_INTERFACE_INFORMATION
[−]#[repr(C)]pub struct USBD_INTERFACE_INFORMATION {
pub Length: u16,
pub InterfaceNumber: u8,
pub AlternateSetting: u8,
pub Class: u8,
pub SubClass: u8,
pub Protocol: u8,
pub Reserved: u8,
pub InterfaceHandle: *mut c_void,
pub NumberOfPipes: u32,
pub Pipes: [USBD_PIPE_INFORMATION; 1],
}
Expand description
Required features: "Win32_Devices_Usb"
Fields
Length: u16
InterfaceNumber: u8
AlternateSetting: u8
Class: u8
SubClass: u8
Protocol: u8
Reserved: u8
InterfaceHandle: *mut c_void
NumberOfPipes: u32
Pipes: [USBD_PIPE_INFORMATION; 1]
Trait Implementations
impl Clone for USBD_INTERFACE_INFORMATION
impl Clone for USBD_INTERFACE_INFORMATION
impl Copy for USBD_INTERFACE_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for USBD_INTERFACE_INFORMATION
impl !Send for USBD_INTERFACE_INFORMATION
impl !Sync for USBD_INTERFACE_INFORMATION
impl Unpin for USBD_INTERFACE_INFORMATION
impl UnwindSafe for USBD_INTERFACE_INFORMATION
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more