pub struct VehicleInfo {
pub vin: String,
pub calibration_ids: Vec<String>,
pub cvns: Vec<u32>,
pub ecu_name: Option<String>,
}Expand description
Vehicle identification info (Mode 09).
Fields§
§vin: String§calibration_ids: Vec<String>§cvns: Vec<u32>§ecu_name: Option<String>Trait Implementations§
Source§impl Clone for VehicleInfo
impl Clone for VehicleInfo
Source§fn clone(&self) -> VehicleInfo
fn clone(&self) -> VehicleInfo
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 moreAuto Trait Implementations§
impl Freeze for VehicleInfo
impl RefUnwindSafe for VehicleInfo
impl Send for VehicleInfo
impl Sync for VehicleInfo
impl Unpin for VehicleInfo
impl UnsafeUnpin for VehicleInfo
impl UnwindSafe for VehicleInfo
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