Struct aws_sdk_iotfleetwise::model::SignalDecoder
source · #[non_exhaustive]pub struct SignalDecoder { /* private fields */ }
Expand description
Information about a signal decoder.
Implementations§
source§impl SignalDecoder
impl SignalDecoder
sourcepub fn fully_qualified_name(&self) -> Option<&str>
pub fn fully_qualified_name(&self) -> Option<&str>
The fully qualified name of a signal decoder as defined in a vehicle model.
sourcepub fn type(&self) -> Option<&SignalDecoderType>
pub fn type(&self) -> Option<&SignalDecoderType>
The network protocol for the vehicle. For example, CAN_SIGNAL
specifies a protocol that defines how data is communicated between electronic control units (ECUs). OBD_SIGNAL
specifies a protocol that defines how self-diagnostic data is communicated between ECUs.
sourcepub fn interface_id(&self) -> Option<&str>
pub fn interface_id(&self) -> Option<&str>
The ID of a network interface that specifies what network protocol a vehicle follows.
sourcepub fn can_signal(&self) -> Option<&CanSignal>
pub fn can_signal(&self) -> Option<&CanSignal>
Information about signal decoder using the Controller Area Network (CAN) protocol.
sourcepub fn obd_signal(&self) -> Option<&ObdSignal>
pub fn obd_signal(&self) -> Option<&ObdSignal>
Information about signal decoder using the On-board diagnostic (OBD) II protocol.
source§impl SignalDecoder
impl SignalDecoder
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SignalDecoder
.
Trait Implementations§
source§impl Clone for SignalDecoder
impl Clone for SignalDecoder
source§fn clone(&self) -> SignalDecoder
fn clone(&self) -> SignalDecoder
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 SignalDecoder
impl Debug for SignalDecoder
source§impl PartialEq<SignalDecoder> for SignalDecoder
impl PartialEq<SignalDecoder> for SignalDecoder
source§fn eq(&self, other: &SignalDecoder) -> bool
fn eq(&self, other: &SignalDecoder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.