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
//! General purpose message-related types
use ;
use ;
/// The `InfoTypeAndValue` type is defined in [RFC 4210 Section 5.3.19]
///
/// ```text
/// InfoTypeAndValue ::= SEQUENCE {
/// infoType INFO-TYPE-AND-VALUE.
/// &id({SupportedInfoSet}),
/// infoValue INFO-TYPE-AND-VALUE.
/// &Type({SupportedInfoSet}{@infoType}) }
/// ```
///
/// [RFC 4210 Section 5.3.19]: https://www.rfc-editor.org/rfc/rfc4210#section-5.3.19
/// The `GenMsgContent` type is defined in [RFC 4210 Section 5.3.19]
///
/// ```text
/// GenMsgContent ::= SEQUENCE OF InfoTypeAndValue
/// ```
///
/// [RFC 4210 Section 5.3.19]: https://www.rfc-editor.org/rfc/rfc4210#section-5.3.19
pub type GenMsgContent = Vec;
/// The `GenRepContent` type is defined in [RFC 4210 Section 5.3.20]
///
/// ```text
/// GenRepContent ::= SEQUENCE OF InfoTypeAndValue
/// ```
///
/// [RFC 4210 Section 5.3.20]: https://www.rfc-editor.org/rfc/rfc4210#section-5.3.20
pub type GenRepContent = Vec;