pub struct TriggerInterface(/* private fields */);
Expand description
A TriggerInterface
declares a number of triggers that can be sent by an trigger source
Use ArPackage::create_trigger_interface
to create a new trigger interface
Trait Implementations§
Source§impl AbstractPortInterface for TriggerInterface
impl AbstractPortInterface for TriggerInterface
Source§fn set_is_service(
&self,
is_service: Option<bool>,
) -> Result<(), AutosarAbstractionError>
fn set_is_service( &self, is_service: Option<bool>, ) -> Result<(), AutosarAbstractionError>
Set the isService property for this port interface
Source§fn is_service(&self) -> Option<bool>
fn is_service(&self) -> Option<bool>
Get the isService property for this port interface
Source§impl Clone for TriggerInterface
impl Clone for TriggerInterface
Source§fn clone(&self) -> TriggerInterface
fn clone(&self) -> TriggerInterface
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 TriggerInterface
impl Debug for TriggerInterface
Source§impl From<TriggerInterface> for Element
impl From<TriggerInterface> for Element
Source§fn from(val: TriggerInterface) -> Self
fn from(val: TriggerInterface) -> Self
Converts to this type from the input type.
Source§impl Hash for TriggerInterface
impl Hash for TriggerInterface
Source§impl PartialEq for TriggerInterface
impl PartialEq for TriggerInterface
Source§impl TryFrom<Element> for TriggerInterface
impl TryFrom<Element> for TriggerInterface
impl Eq for TriggerInterface
impl StructuralPartialEq for TriggerInterface
Auto Trait Implementations§
impl Freeze for TriggerInterface
impl !RefUnwindSafe for TriggerInterface
impl Send for TriggerInterface
impl Sync for TriggerInterface
impl Unpin for TriggerInterface
impl !UnwindSafe for TriggerInterface
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.