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
use super::super::Repetition;
#[derive(Clone, Debug, PartialEq)]
pub struct BasicTypeInfo {
name: String,
repetition: Repetition,
is_root: bool,
id: Option<i32>,
}
impl BasicTypeInfo {
pub fn name(&self) -> &str {
&self.name
}
pub fn is_root(&self) -> bool {
self.is_root
}
pub fn repetition(&self) -> &Repetition {
&self.repetition
}
pub fn id(&self) -> &Option<i32> {
&self.id
}
}
impl BasicTypeInfo {
pub fn new(name: String, repetition: Repetition, id: Option<i32>, is_root: bool) -> Self {
Self {
name,
repetition,
is_root,
id,
}
}
}