Struct a2lfile::CalibrationHandle
source · pub struct CalibrationHandle {
pub handle_list: Vec<i32>,
pub calibration_handle_text: Option<CalibrationHandleText>,
/* private fields */
}Expand description
calibration method specific data
Fields§
§handle_list: Vec<i32>§calibration_handle_text: Option<CalibrationHandleText>Implementations§
Trait Implementations§
source§impl A2lObject<(Vec<(u32, bool), Global>, ())> for CalibrationHandle
impl A2lObject<(Vec<(u32, bool), Global>, ())> for CalibrationHandle
source§fn get_layout(&self) -> &BlockInfo<(Vec<(u32, bool)>, ())>
fn get_layout(&self) -> &BlockInfo<(Vec<(u32, bool)>, ())>
get a reference to the BlockInfo that describes the layout of the a2l object
source§fn get_layout_mut(&mut self) -> &mut BlockInfo<(Vec<(u32, bool)>, ())>
fn get_layout_mut(&mut self) -> &mut BlockInfo<(Vec<(u32, bool)>, ())>
get a mutable reference to the BlockInfo that describes the layout of the a2l object
source§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”
source§impl Clone for CalibrationHandle
impl Clone for CalibrationHandle
source§fn clone(&self) -> CalibrationHandle
fn clone(&self) -> CalibrationHandle
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 CalibrationHandle
impl Debug for CalibrationHandle
source§impl PartialEq<CalibrationHandle> for CalibrationHandle
impl PartialEq<CalibrationHandle> for CalibrationHandle
Auto Trait Implementations§
impl RefUnwindSafe for CalibrationHandle
impl Send for CalibrationHandle
impl Sync for CalibrationHandle
impl Unpin for CalibrationHandle
impl UnwindSafe for CalibrationHandle
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