#[repr(C)]pub struct dv_endpoint_info {
pub device_id: u32,
pub vendor_id: u32,
pub chip: *mut dv_endpoint_chip_info_t,
pub dram: *mut dv_endpoint_dram_info_t,
pub iface: *mut dv_endpoint_iface_info_t,
pub module_name: *mut c_char,
pub gpio0: u32,
pub gpio1: u32,
pub device_uid: u32,
}Expand description
DV Endpoint information
Fields§
§device_id: u32< endpoint device id
vendor_id: u32< endpoint vendor id
chip: *mut dv_endpoint_chip_info_t< endpoint chip information
dram: *mut dv_endpoint_dram_info_t< endpoint external dram information
iface: *mut dv_endpoint_iface_info_t< endpoint interface information
module_name: *mut c_char< physical module name connected to server
gpio0: u32< [unused]
gpio1: u32< [unused]
device_uid: u32< used to uniquely identify the chip
Trait Implementations§
Source§impl Clone for dv_endpoint_info
impl Clone for dv_endpoint_info
Source§fn clone(&self) -> dv_endpoint_info
fn clone(&self) -> dv_endpoint_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 dv_endpoint_info
impl Debug for dv_endpoint_info
impl Copy for dv_endpoint_info
Auto Trait Implementations§
impl Freeze for dv_endpoint_info
impl RefUnwindSafe for dv_endpoint_info
impl !Send for dv_endpoint_info
impl !Sync for dv_endpoint_info
impl Unpin for dv_endpoint_info
impl UnsafeUnpin for dv_endpoint_info
impl UnwindSafe for dv_endpoint_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