#[repr(u8)]pub enum EventTypeParameter {
StopResponseOnEvent = 0,
OnDTCStatusChange {
test_failed: u8,
service: Service,
sub_func: u8,
dtc_status_mask: u8,
},
OnChangeOfDataIdentifier {
did: u16,
service: Service,
},
ReportActivatedEvents = 4,
StartResponseOnEvent = 5,
ClearResponseOnEvent = 6,
OnComparisonOfValues {
did: u16,
logic_id: ComparisonLogicID,
comparison_ref: u32,
hysteresis_value: u8,
localization: Localization,
service: Service,
response_did: u16,
},
ReportMostRecentDtcOnStatusChange {
report_type: u8,
},
ReportDTCRecordInformationOnDtcStatusChange {
dtc_status_mask: u8,
dtc_sub_func: u8,
dtc_ext_data_record_num: u8,
},
}Variants§
StopResponseOnEvent = 0
OnDTCStatusChange
OnChangeOfDataIdentifier
ReportActivatedEvents = 4
StartResponseOnEvent = 5
ClearResponseOnEvent = 6
OnComparisonOfValues
ReportMostRecentDtcOnStatusChange
ReportDTCRecordInformationOnDtcStatusChange
Trait Implementations§
Source§impl Clone for EventTypeParameter
impl Clone for EventTypeParameter
Source§fn clone(&self) -> EventTypeParameter
fn clone(&self) -> EventTypeParameter
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 moreAuto Trait Implementations§
impl Freeze for EventTypeParameter
impl RefUnwindSafe for EventTypeParameter
impl Send for EventTypeParameter
impl Sync for EventTypeParameter
impl Unpin for EventTypeParameter
impl UnwindSafe for EventTypeParameter
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