Enum auto_uds::CommunicationType
source · pub enum CommunicationType {
NormalCommunication,
NetworkManagement,
All,
}Expand description
ECU Communication types
Variants§
NormalCommunication
Application layer communication (inter-signal exchanges) between ECUs
NetworkManagement
Network management related communication
All
Both application layer communication and network management communication
Trait Implementations§
source§impl Clone for CommunicationType
impl Clone for CommunicationType
source§fn clone(&self) -> CommunicationType
fn clone(&self) -> CommunicationType
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 CommunicationType
impl Debug for CommunicationType
source§impl Ord for CommunicationType
impl Ord for CommunicationType
source§fn cmp(&self, other: &CommunicationType) -> Ordering
fn cmp(&self, other: &CommunicationType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<CommunicationType> for CommunicationType
impl PartialEq<CommunicationType> for CommunicationType
source§fn eq(&self, other: &CommunicationType) -> bool
fn eq(&self, other: &CommunicationType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<CommunicationType> for CommunicationType
impl PartialOrd<CommunicationType> for CommunicationType
source§fn partial_cmp(&self, other: &CommunicationType) -> Option<Ordering>
fn partial_cmp(&self, other: &CommunicationType) -> Option<Ordering>
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