pub struct SomeipSdServerEventGroupTimingConfig(/* private fields */);
Expand description
A SomeipSdServerEventGroupTimingConfig
contains the configuration for the timing of an EventHandler
This configuration is a named element that is created separately and can be used by multiple EventHandler
s.
Use ArPackage::create_someip_sd_server_event_group_timing_config
to create a new SomeipSdServerEventGroupTimingConfig
.
Implementations§
Source§impl SomeipSdServerEventGroupTimingConfig
impl SomeipSdServerEventGroupTimingConfig
Sourcepub fn set_request_response_delay(
&self,
request_response_delay: &RequestResponseDelay,
) -> Result<(), AutosarAbstractionError>
pub fn set_request_response_delay( &self, request_response_delay: &RequestResponseDelay, ) -> Result<(), AutosarAbstractionError>
set the request response delay of this SomeipSdServerEventGroupTimingConfig
Sourcepub fn request_response_delay(&self) -> Option<RequestResponseDelay>
pub fn request_response_delay(&self) -> Option<RequestResponseDelay>
get the request response delay of this SomeipSdServerEventGroupTimingConfig
Trait Implementations§
Source§impl Clone for SomeipSdServerEventGroupTimingConfig
impl Clone for SomeipSdServerEventGroupTimingConfig
Source§fn clone(&self) -> SomeipSdServerEventGroupTimingConfig
fn clone(&self) -> SomeipSdServerEventGroupTimingConfig
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 From<SomeipSdServerEventGroupTimingConfig> for Element
impl From<SomeipSdServerEventGroupTimingConfig> for Element
Source§fn from(val: SomeipSdServerEventGroupTimingConfig) -> Self
fn from(val: SomeipSdServerEventGroupTimingConfig) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SomeipSdServerEventGroupTimingConfig
impl PartialEq for SomeipSdServerEventGroupTimingConfig
Source§fn eq(&self, other: &SomeipSdServerEventGroupTimingConfig) -> bool
fn eq(&self, other: &SomeipSdServerEventGroupTimingConfig) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for SomeipSdServerEventGroupTimingConfig
impl StructuralPartialEq for SomeipSdServerEventGroupTimingConfig
Auto Trait Implementations§
impl Freeze for SomeipSdServerEventGroupTimingConfig
impl !RefUnwindSafe for SomeipSdServerEventGroupTimingConfig
impl Send for SomeipSdServerEventGroupTimingConfig
impl Sync for SomeipSdServerEventGroupTimingConfig
impl Unpin for SomeipSdServerEventGroupTimingConfig
impl !UnwindSafe for SomeipSdServerEventGroupTimingConfig
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.