1use xmlserde_derives::XmlDeserialize;
2
3use crate::{
4 attribute::Attribute,
5 documentation::{DocDeprecated, DocStability, DocVersion, Documentation, SourcePosition},
6 field::Field,
7 function::{Function, FunctionInline},
8 method::{Method, MethodInline},
9 prelude::*,
10 record::Record,
11 version::Version,
12 Stability,
13};
14
15#[derive(Clone, Debug, XmlDeserialize)]
16#[xmlserde(root = b"union")]
17#[xmlserde(deny_unknown_fields)]
18pub struct Union {
19 #[xmlserde(name = b"name", ty = "attr")]
20 name: Option<String>,
21 #[xmlserde(name = b"c:type", ty = "attr")]
22 c_type: Option<String>,
23 #[xmlserde(name = b"c:symbol-prefix", ty = "attr")]
24 c_symbol_prefix: Option<String>,
25 #[xmlserde(name = b"glib:type-name", ty = "attr")]
26 g_type_name: Option<String>,
27 #[xmlserde(name = b"glib:get-type", ty = "attr")]
28 g_get_type: Option<String>,
29 #[xmlserde(name = b"copy-function", ty = "attr")]
30 copy_function: Option<String>,
31 #[xmlserde(name = b"free-function", ty = "attr")]
32 free_function: Option<String>,
33 #[xmlserde(name = b"introspectable", ty = "attr")]
35 introspectable: Option<bool>,
36 #[xmlserde(name = b"deprecated", ty = "attr")]
37 deprecated: Option<bool>,
38 #[xmlserde(name = b"version", ty = "attr")]
39 version: Option<Version>,
40 #[xmlserde(name = b"deprecated-version", ty = "attr")]
41 deprecated_version: Option<Version>,
42 #[xmlserde(name = b"stability", ty = "attr")]
43 stability: Option<Stability>,
44 #[xmlserde(name = b"doc", ty = "child")]
46 doc: Option<Documentation>,
47 #[xmlserde(name = b"doc-deprecated", ty = "child")]
48 doc_deprecated: Option<DocDeprecated>,
49 #[xmlserde(name = b"doc-stability", ty = "child")]
50 doc_stability: Option<DocStability>,
51 #[xmlserde(name = b"doc-version", ty = "child")]
52 doc_version: Option<DocVersion>,
53 #[xmlserde(name = b"source-position", ty = "child")]
54 source_position: Option<SourcePosition>,
55 #[xmlserde(name = b"attribute", ty = "child")]
57 attributes: Vec<Attribute>,
58 #[xmlserde(name = b"field", ty = "child")]
59 fields: Vec<Field>,
60 #[xmlserde(name = b"function", ty = "child")]
61 functions: Vec<Function>,
62 #[xmlserde(name = b"function-inline", ty = "child")]
63 inline_functions: Vec<FunctionInline>,
64 #[xmlserde(name = b"constructor", ty = "child")]
65 constructors: Vec<Function>,
66 #[xmlserde(name = b"method", ty = "child")]
67 methods: Vec<Method>,
68 #[xmlserde(name = b"method-inline", ty = "child")]
69 inline_methods: Vec<MethodInline>,
70 #[xmlserde(name = b"record", ty = "child")]
71 records: Vec<Record>,
72}
73
74impl Union {
75 pub fn name(&self) -> Option<&str> {
76 self.name.as_deref()
77 }
78
79 pub fn c_type(&self) -> Option<&str> {
80 self.c_type.as_deref()
81 }
82
83 pub fn c_symbol_prefix(&self) -> Option<&str> {
84 self.c_symbol_prefix.as_deref()
85 }
86
87 pub fn g_type_name(&self) -> Option<&str> {
88 self.g_type_name.as_deref()
89 }
90
91 pub fn g_get_type(&self) -> Option<&str> {
92 self.g_get_type.as_deref()
93 }
94
95 pub fn copy_function(&self) -> Option<&str> {
96 self.copy_function.as_deref()
97 }
98
99 pub fn free_function(&self) -> Option<&str> {
100 self.free_function.as_deref()
101 }
102
103 pub fn fields(&self) -> &[Field] {
104 &self.fields
105 }
106
107 pub fn constructors(&self) -> &[Function] {
108 &self.constructors
109 }
110
111 pub fn inlined_methods(&self) -> &[MethodInline] {
112 &self.inline_methods
113 }
114
115 pub fn methods(&self) -> &[Method] {
116 &self.methods
117 }
118
119 pub fn inlined_functions(&self) -> &[FunctionInline] {
120 &self.inline_functions
121 }
122
123 pub fn functions(&self) -> &[Function] {
124 &self.functions
125 }
126
127 pub fn records(&self) -> &[Record] {
128 &self.records
129 }
130}
131
132impl_info!(Union);
133impl_attributable!(Union);
134impl_documentable!(Union);