pub struct DevelopmentData {
    pub processor_type: u16,
    pub db_comm_matrix_version: String,
    pub can_driver_version: String,
    pub nm_version: String,
    pub kwp2000_version: String,
    pub transport_layer_version: String,
    pub db_comm_version: String,
    pub flexer_version: String,
}
Expand description

Development data of the ECU. Used by super::Kwp2000DiagnosticServer::read_ecu_development_data

Fields

processor_type: u16

ECU Processor type

db_comm_matrix_version: String

Database communication matrix version. Formatted as XX.YY

can_driver_version: String

CAN Driver version. Formatted as XX.YY

nm_version: String

NM version. Formatted as XX.YY

kwp2000_version: String

KWP2000 Module version. Formatted as XX.YY

transport_layer_version: String

Transport layer version. Formatted as XX.YY

db_comm_version: String

Database communication version. Formatted as XX.YY

flexer_version: String

Flexer version. Formatted as XX.YY. If the ECU does not support this data field, 99.99 will be stored

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.