#[repr(C)]pub struct _ft_device_list_info_node {
pub Flags: ULONG,
pub Type: ULONG,
pub ID: ULONG,
pub LocId: DWORD,
pub SerialNumber: [c_char; 16],
pub Description: [c_char; 64],
pub ftHandle: FT_HANDLE,
}Expand description
@noop FT_DEVICE_LIST_INFO_NODE @par Summary This structure is used for passing information about a device back from the FT_GetDeviceInfoList function. @see FT_GetDeviceInfoList
Fields§
§Flags: ULONG§Type: ULONG§ID: ULONG§LocId: DWORD§SerialNumber: [c_char; 16]§Description: [c_char; 64]§ftHandle: FT_HANDLETrait Implementations§
Source§impl Clone for _ft_device_list_info_node
impl Clone for _ft_device_list_info_node
Source§fn clone(&self) -> _ft_device_list_info_node
fn clone(&self) -> _ft_device_list_info_node
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 moreimpl Copy for _ft_device_list_info_node
Auto Trait Implementations§
impl Freeze for _ft_device_list_info_node
impl RefUnwindSafe for _ft_device_list_info_node
impl !Send for _ft_device_list_info_node
impl !Sync for _ft_device_list_info_node
impl Unpin for _ft_device_list_info_node
impl UnwindSafe for _ft_device_list_info_node
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