pub struct TransformationTechnology(/* private fields */);
Expand description
A TransformationTechnology
describes how to transform signal or PDU data
Implementations§
Source§impl TransformationTechnology
impl TransformationTechnology
Sourcepub fn set_config(
&self,
config: &TransformationTechnologyConfig,
) -> Result<(), AutosarAbstractionError>
pub fn set_config( &self, config: &TransformationTechnologyConfig, ) -> Result<(), AutosarAbstractionError>
Set the configuration of the TransformationTechnology
Sourcepub fn transformer_class(&self) -> Option<EnumItem>
pub fn transformer_class(&self) -> Option<EnumItem>
Get the transformer class of the TransformationTechnology
Sourcepub fn data_transformation_set(&self) -> Option<DataTransformationSet>
pub fn data_transformation_set(&self) -> Option<DataTransformationSet>
get the DataTransformationSet
that contains this TransformationTechnology
Sourcepub fn config(&self) -> Option<TransformationTechnologyConfig>
pub fn config(&self) -> Option<TransformationTechnologyConfig>
Get the configuration of the TransformationTechnology
Trait Implementations§
Source§impl Clone for TransformationTechnology
impl Clone for TransformationTechnology
Source§fn clone(&self) -> TransformationTechnology
fn clone(&self) -> TransformationTechnology
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 TransformationTechnology
impl Debug for TransformationTechnology
Source§impl From<TransformationTechnology> for Element
impl From<TransformationTechnology> for Element
Source§fn from(val: TransformationTechnology) -> Self
fn from(val: TransformationTechnology) -> Self
Converts to this type from the input type.
Source§impl Hash for TransformationTechnology
impl Hash for TransformationTechnology
Source§impl PartialEq for TransformationTechnology
impl PartialEq for TransformationTechnology
Source§impl TryFrom<Element> for TransformationTechnology
impl TryFrom<Element> for TransformationTechnology
impl Eq for TransformationTechnology
impl StructuralPartialEq for TransformationTechnology
Auto Trait Implementations§
impl Freeze for TransformationTechnology
impl !RefUnwindSafe for TransformationTechnology
impl Send for TransformationTechnology
impl Sync for TransformationTechnology
impl Unpin for TransformationTechnology
impl !UnwindSafe for TransformationTechnology
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.