pub enum Subnet {
All,
Custom(u8),
RxOnly,
}Expand description
ECU communication subnet type
Variants§
All
All subnets
Custom(u8)
Custom Subnet ID. Values range from 0x01-0x0E
RxOnly
Only received subnets
Trait Implementations§
source§impl Ord for Subnet
impl Ord for Subnet
source§impl PartialEq<Subnet> for Subnet
impl PartialEq<Subnet> for Subnet
source§impl PartialOrd<Subnet> for Subnet
impl PartialOrd<Subnet> for Subnet
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more