#[repr(C)]pub struct EcuUniqueRespData {
pub unique_resp_identifier: u32,
pub num_param_items: u32,
pub p_params: *mut ParamItem,
}
Expand description
ECU Unique response data
Fields§
§unique_resp_identifier: u32
Unique response identifier
num_param_items: u32
Number of ComParams for the unique identifier
p_params: *mut ParamItem
Pointer to array of ComParams used to uniquely define the ECUs unique response
Trait Implementations§
Source§impl Clone for EcuUniqueRespData
impl Clone for EcuUniqueRespData
Source§fn clone(&self) -> EcuUniqueRespData
fn clone(&self) -> EcuUniqueRespData
Returns a copy 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 EcuUniqueRespData
impl Debug for EcuUniqueRespData
Source§impl Ord for EcuUniqueRespData
impl Ord for EcuUniqueRespData
Source§fn cmp(&self, other: &EcuUniqueRespData) -> Ordering
fn cmp(&self, other: &EcuUniqueRespData) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EcuUniqueRespData
impl PartialEq for EcuUniqueRespData
Source§impl PartialOrd for EcuUniqueRespData
impl PartialOrd for EcuUniqueRespData
impl Copy for EcuUniqueRespData
impl Eq for EcuUniqueRespData
impl StructuralPartialEq for EcuUniqueRespData
Auto Trait Implementations§
impl Freeze for EcuUniqueRespData
impl RefUnwindSafe for EcuUniqueRespData
impl !Send for EcuUniqueRespData
impl !Sync for EcuUniqueRespData
impl Unpin for EcuUniqueRespData
impl UnwindSafe for EcuUniqueRespData
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