pub struct FlexrayFrame(/* private fields */);
Expand description
a Flexray frame
Trait Implementations§
Source§impl AbstractFrame for FlexrayFrame
impl AbstractFrame for FlexrayFrame
Source§fn frame_triggerings(&self) -> Vec<FlexrayFrameTriggering>
fn frame_triggerings(&self) -> Vec<FlexrayFrameTriggering>
Iterator over all FlexrayFrameTriggering
s using this frame
Source§fn map_pdu<T: AbstractPdu>(
&self,
gen_pdu: &T,
start_position: u32,
byte_order: ByteOrder,
update_bit: Option<u32>,
) -> Result<PduToFrameMapping, AutosarAbstractionError>
fn map_pdu<T: AbstractPdu>( &self, gen_pdu: &T, start_position: u32, byte_order: ByteOrder, update_bit: Option<u32>, ) -> Result<PduToFrameMapping, AutosarAbstractionError>
map a PDU to the frame
Source§type FrameTriggeringType = FlexrayFrameTriggering
type FrameTriggeringType = FlexrayFrameTriggering
The bus-specific frame triggering type
Source§fn mapped_pdus(
&self,
) -> impl Iterator<Item = PduToFrameMapping> + Send + 'static
fn mapped_pdus( &self, ) -> impl Iterator<Item = PduToFrameMapping> + Send + 'static
returns an iterator over all PDUs in the frame
Source§fn set_length(&self, length: u32) -> Result<(), AutosarAbstractionError>
fn set_length(&self, length: u32) -> Result<(), AutosarAbstractionError>
set the length of the frame
Source§impl AbstractionElement for FlexrayFrame
impl AbstractionElement for FlexrayFrame
Source§impl Clone for FlexrayFrame
impl Clone for FlexrayFrame
Source§fn clone(&self) -> FlexrayFrame
fn clone(&self) -> FlexrayFrame
Returns a duplicate 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 FlexrayFrame
impl Debug for FlexrayFrame
Source§impl From<FlexrayFrame> for Element
impl From<FlexrayFrame> for Element
Source§fn from(val: FlexrayFrame) -> Self
fn from(val: FlexrayFrame) -> Self
Converts to this type from the input type.
Source§impl Hash for FlexrayFrame
impl Hash for FlexrayFrame
Source§impl PartialEq for FlexrayFrame
impl PartialEq for FlexrayFrame
Source§impl TryFrom<Element> for FlexrayFrame
impl TryFrom<Element> for FlexrayFrame
impl Eq for FlexrayFrame
impl StructuralPartialEq for FlexrayFrame
Auto Trait Implementations§
impl Freeze for FlexrayFrame
impl !RefUnwindSafe for FlexrayFrame
impl Send for FlexrayFrame
impl Sync for FlexrayFrame
impl Unpin for FlexrayFrame
impl !UnwindSafe for FlexrayFrame
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.