1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//! Blanket/Common types and traits for identifiers (Data Identifiers and Routine Identifiers)
use TokenStream;
use quote;
use ;
/// Derive Identifier and implement `TryFrom<u16>`, `Into<u16>` traits
///
/// ## Enum Example
/// ```rust
/// use uds_protocol::{UDSRoutineIdentifier, Identifier, Error};
/// use serde::Serialize;
///
/// #[derive(Copy, Clone, Serialize, Identifier)]
/// pub enum MyRoutineIdentifier {
/// /// 0x0101 (example)
/// VerifySignature,
///
/// // Standard ISO UDS routine fallthrough
/// UDSRoutineIdentifier(UDSRoutineIdentifier),
/// }
///
/// impl TryFrom<u16> for MyRoutineIdentifier {
/// type Error = uds_protocol::Error;
/// fn try_from(value: u16) -> Result<Self, Self::Error> {
/// match value {
/// 0x0101 => Ok(MyRoutineIdentifier::VerifySignature),
/// _ => Ok(MyRoutineIdentifier::UDSRoutineIdentifier(UDSRoutineIdentifier::try_from(value)?)),
/// }
/// }
/// }
///
/// impl From<MyRoutineIdentifier> for u16 {
/// fn from(value: MyRoutineIdentifier) -> Self {
/// match value {
/// MyRoutineIdentifier::VerifySignature => 0x0101,
/// MyRoutineIdentifier::UDSRoutineIdentifier(identifier) => u16::from(identifier),
/// }
/// }
/// }
/// ```
///
/// ## Struct definition Example
/// Structs can only contain a single value to be used as an identifier to constrain the type
/// ```rust
///
/// use uds_protocol::{UDSIdentifier, Identifier};
/// use serde::Serialize;
///
/// #[derive(Clone, Copy, Serialize, Identifier)]
/// pub struct ProtocolIdentifier {
/// identifier: UDSIdentifier,
/// }
/// ```
///
/// # Panics
///
/// This will panic if `syn::Data::Union()` type is passed as input
///