pub struct NotAvailableValueSpecification {
pub label: Option<String>,
pub default_pattern: Option<u64>,
}
Expand description
Default init pattern, which is used when an optional ApplicationRecordElement
in not available
Fields§
§label: Option<String>
SHORT-LABEL: used to identify the default pattern in a human readable way. This is used when the default pattern is part of a record.
default_pattern: Option<u64>
initialization pattern for memory occupied by unavailable application record elements; available in AUTOSAR_00049
and newer
Trait Implementations§
Source§impl Clone for NotAvailableValueSpecification
impl Clone for NotAvailableValueSpecification
Source§fn clone(&self) -> NotAvailableValueSpecification
fn clone(&self) -> NotAvailableValueSpecification
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<NotAvailableValueSpecification> for ValueSpecification
impl From<NotAvailableValueSpecification> for ValueSpecification
Source§fn from(value_spec: NotAvailableValueSpecification) -> Self
fn from(value_spec: NotAvailableValueSpecification) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NotAvailableValueSpecification
impl PartialEq for NotAvailableValueSpecification
Source§fn eq(&self, other: &NotAvailableValueSpecification) -> bool
fn eq(&self, other: &NotAvailableValueSpecification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NotAvailableValueSpecification
Auto Trait Implementations§
impl Freeze for NotAvailableValueSpecification
impl RefUnwindSafe for NotAvailableValueSpecification
impl Send for NotAvailableValueSpecification
impl Sync for NotAvailableValueSpecification
impl Unpin for NotAvailableValueSpecification
impl UnwindSafe for NotAvailableValueSpecification
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