Add more doc comments
This commit is contained in:
parent
fb35987b28
commit
5b20ac0ab9
6 changed files with 29 additions and 4 deletions
|
|
@ -24,9 +24,13 @@ pub struct DtcsInfo {
|
|||
/// An individual trouble code from an ECU
|
||||
#[derive(Debug)]
|
||||
pub enum Dtc {
|
||||
/// Powertrain, represented with `'P'`
|
||||
Powertrain(u16),
|
||||
/// Chassis, represented with `'C'`
|
||||
Chassis(u16),
|
||||
/// Chassis, represented with `'B'`
|
||||
Body(u16),
|
||||
/// Network, represented with `'U'` likely due to previously being the "unknown" category
|
||||
Network(u16),
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue