#[repr(C, packed(1))]pub struct USB_NODE_CONNECTION_INFORMATION_EX {
pub ConnectionIndex: ULONG,
pub DeviceDescriptor: USB_DEVICE_DESCRIPTOR,
pub CurrentConfigurationValue: UCHAR,
pub Speed: UCHAR,
pub DeviceIsHub: BOOLEAN,
pub DeviceAddress: USHORT,
pub NumberOfOpenPipes: ULONG,
pub ConnectionStatus: USB_CONNECTION_STATUS,
pub PipeList: [USB_PIPE_INFO; 0],
}
Fields§
§ConnectionIndex: ULONG
§DeviceDescriptor: USB_DEVICE_DESCRIPTOR
§CurrentConfigurationValue: UCHAR
§Speed: UCHAR
§DeviceIsHub: BOOLEAN
§DeviceAddress: USHORT
§NumberOfOpenPipes: ULONG
§ConnectionStatus: USB_CONNECTION_STATUS
§PipeList: [USB_PIPE_INFO; 0]
Trait Implementations§
Source§impl Clone for USB_NODE_CONNECTION_INFORMATION_EX
impl Clone for USB_NODE_CONNECTION_INFORMATION_EX
Source§fn clone(&self) -> USB_NODE_CONNECTION_INFORMATION_EX
fn clone(&self) -> USB_NODE_CONNECTION_INFORMATION_EX
Returns a duplicate 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 Default for USB_NODE_CONNECTION_INFORMATION_EX
impl Default for USB_NODE_CONNECTION_INFORMATION_EX
Source§fn default() -> USB_NODE_CONNECTION_INFORMATION_EX
fn default() -> USB_NODE_CONNECTION_INFORMATION_EX
Returns the “default value” for a type. Read more
impl Copy for USB_NODE_CONNECTION_INFORMATION_EX
Auto Trait Implementations§
impl Freeze for USB_NODE_CONNECTION_INFORMATION_EX
impl RefUnwindSafe for USB_NODE_CONNECTION_INFORMATION_EX
impl Send for USB_NODE_CONNECTION_INFORMATION_EX
impl Sync for USB_NODE_CONNECTION_INFORMATION_EX
impl Unpin for USB_NODE_CONNECTION_INFORMATION_EX
impl UnwindSafe for USB_NODE_CONNECTION_INFORMATION_EX
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