#[repr(C)]pub struct probe_info {
pub type_: probe_type_e,
pub vid: u16,
pub pid: u16,
pub manufacturer: *const c_char,
pub product: *const c_char,
pub serial: *const c_char,
pub version: *const c_char,
pub next: *mut probe_info,
}Fields§
§type_: probe_type_e§vid: u16§pid: u16§manufacturer: *const c_char§product: *const c_char§serial: *const c_char§version: *const c_char§next: *mut probe_infoTrait Implementations§
Source§impl Clone for probe_info
impl Clone for probe_info
Source§fn clone(&self) -> probe_info
fn clone(&self) -> probe_info
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 Debug for probe_info
impl Debug for probe_info
impl Copy for probe_info
Auto Trait Implementations§
impl Freeze for probe_info
impl RefUnwindSafe for probe_info
impl !Send for probe_info
impl !Sync for probe_info
impl Unpin for probe_info
impl UnwindSafe for probe_info
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