pub struct ISignalGroup(/* private fields */);
Expand description
An ISignalGroup
groups signals that should always be kept together
Implementations§
Source§impl ISignalGroup
impl ISignalGroup
Sourcepub fn add_signal(
&self,
signal: &ISignal,
) -> Result<(), AutosarAbstractionError>
pub fn add_signal( &self, signal: &ISignal, ) -> Result<(), AutosarAbstractionError>
Add a signal to the signal group
Sourcepub fn system_signal_group(&self) -> Option<SystemSignalGroup>
pub fn system_signal_group(&self) -> Option<SystemSignalGroup>
get the system signal group that is associated with this signal group
Sourcepub fn add_data_transformation(
&self,
data_transformation: &DataTransformation,
) -> Result<(), AutosarAbstractionError>
pub fn add_data_transformation( &self, data_transformation: &DataTransformation, ) -> Result<(), AutosarAbstractionError>
add a data transformation to this signal group
Sourcepub fn data_transformations(
&self,
) -> impl Iterator<Item = DataTransformation> + Send + 'static
pub fn data_transformations( &self, ) -> impl Iterator<Item = DataTransformation> + Send + 'static
get all data transformations that are applied to this signal group
Sourcepub fn create_e2e_transformation_isignal_props(
&self,
transformer: &TransformationTechnology,
) -> Result<EndToEndTransformationISignalProps, AutosarAbstractionError>
pub fn create_e2e_transformation_isignal_props( &self, transformer: &TransformationTechnology, ) -> Result<EndToEndTransformationISignalProps, AutosarAbstractionError>
create E2E transformation properties for this signal group
Sourcepub fn create_someip_transformation_isignal_props(
&self,
transformer: &TransformationTechnology,
) -> Result<SomeIpTransformationISignalProps, AutosarAbstractionError>
pub fn create_someip_transformation_isignal_props( &self, transformer: &TransformationTechnology, ) -> Result<SomeIpTransformationISignalProps, AutosarAbstractionError>
create SomeIp transformation properties for this signal group
Sourcepub fn transformation_isignal_props(
&self,
) -> impl Iterator<Item = TransformationISignalProps> + Send + 'static
pub fn transformation_isignal_props( &self, ) -> impl Iterator<Item = TransformationISignalProps> + Send + 'static
get all transformation properties that are applied to this signal group
Trait Implementations§
Source§impl AbstractionElement for ISignalGroup
impl AbstractionElement for ISignalGroup
Source§impl Clone for ISignalGroup
impl Clone for ISignalGroup
Source§fn clone(&self) -> ISignalGroup
fn clone(&self) -> ISignalGroup
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 ISignalGroup
impl Debug for ISignalGroup
Source§impl From<ISignalGroup> for Element
impl From<ISignalGroup> for Element
Source§fn from(val: ISignalGroup) -> Self
fn from(val: ISignalGroup) -> Self
Converts to this type from the input type.
Source§impl Hash for ISignalGroup
impl Hash for ISignalGroup
Source§impl PartialEq for ISignalGroup
impl PartialEq for ISignalGroup
Source§impl TryFrom<Element> for ISignalGroup
impl TryFrom<Element> for ISignalGroup
impl Eq for ISignalGroup
impl StructuralPartialEq for ISignalGroup
Auto Trait Implementations§
impl Freeze for ISignalGroup
impl !RefUnwindSafe for ISignalGroup
impl Send for ISignalGroup
impl Sync for ISignalGroup
impl Unpin for ISignalGroup
impl !UnwindSafe for ISignalGroup
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.