pub struct ModPar {Show 17 fields
pub comment: String,
pub addr_epk: Vec<AddrEpk>,
pub calibration_method: Vec<CalibrationMethod>,
pub cpu_type: Option<CpuType>,
pub customer: Option<Customer>,
pub customer_no: Option<CustomerNo>,
pub ecu: Option<Ecu>,
pub ecu_calibration_offset: Option<EcuCalibrationOffset>,
pub epk: Option<Epk>,
pub memory_layout: Vec<MemoryLayout>,
pub memory_segment: ItemList<MemorySegment>,
pub no_of_interfaces: Option<NoOfInterfaces>,
pub phone_no: Option<PhoneNo>,
pub supplier: Option<Supplier>,
pub system_constant: Vec<SystemConstant>,
pub user: Option<User>,
pub version: Option<Version>,
/* private fields */
}
Expand description
defines system information and management data for the module
Fields§
§comment: String
§addr_epk: Vec<AddrEpk>
§calibration_method: Vec<CalibrationMethod>
§cpu_type: Option<CpuType>
§customer: Option<Customer>
§customer_no: Option<CustomerNo>
§ecu: Option<Ecu>
§ecu_calibration_offset: Option<EcuCalibrationOffset>
§epk: Option<Epk>
§memory_layout: Vec<MemoryLayout>
§memory_segment: ItemList<MemorySegment>
§no_of_interfaces: Option<NoOfInterfaces>
§phone_no: Option<PhoneNo>
§supplier: Option<Supplier>
§system_constant: Vec<SystemConstant>
§user: Option<User>
§version: Option<Version>
Implementations§
Trait Implementations§
Source§impl A2lObject<(u32, ())> for ModPar
impl A2lObject<(u32, ())> for ModPar
Source§fn get_layout(&self) -> &BlockInfo<(u32, ())>
fn get_layout(&self) -> &BlockInfo<(u32, ())>
get a reference to the
BlockInfo
that describes the layout of the a2l objectSource§fn get_layout_mut(&mut self) -> &mut BlockInfo<(u32, ())>
fn get_layout_mut(&mut self) -> &mut BlockInfo<(u32, ())>
get a mutable reference to the
BlockInfo
that describes the layout of the a2l objectSource§fn reset_location(&mut self)
fn reset_location(&mut self)
reset the location information on the a2l object. It will be treated like a new object when writing a file
Source§fn merge_includes(&mut self)
fn merge_includes(&mut self)
reset the reference to an include file on this objct and its children.
This causes the object to be written into the output file instead of referenced through /include “filename”
Auto Trait Implementations§
impl Freeze for ModPar
impl RefUnwindSafe for ModPar
impl Send for ModPar
impl Sync for ModPar
impl Unpin for ModPar
impl UnwindSafe for ModPar
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