1use xmlserde_derives::XmlDeserialize;
2
3use crate::{
4 attribute::Attribute,
5 documentation::{DocDeprecated, DocStability, DocVersion, Documentation, SourcePosition},
6 function::{Function, FunctionInline},
7 prelude::*,
8 version::Version,
9 Stability,
10};
11
12#[derive(Clone, Debug, XmlDeserialize)]
13#[xmlserde(root = b"glib:boxed")]
14#[xmlserde(deny_unknown_fields)]
15pub struct Boxed {
16 #[xmlserde(name = b"glib:name", ty = "attr")]
17 g_name: String,
18 #[xmlserde(name = b"glib:type-name", ty = "attr")]
19 g_type_name: Option<String>,
20 #[xmlserde(name = b"glib:get-type", ty = "attr")]
21 g_get_type: Option<String>,
22 #[xmlserde(name = b"c:symbol-prefix", ty = "attr")]
23 symbol_prefix: Option<String>,
24 #[xmlserde(name = b"foreign", ty = "attr")]
25 foreign: Option<bool>,
26 #[xmlserde(name = b"glib:is-gtype-struct-for", ty = "attr")]
27 g_is_gtype_struct_for: Option<String>,
28 #[xmlserde(name = b"copy-function", ty = "attr")]
29 copy_function: Option<String>,
30 #[xmlserde(name = b"free-function", ty = "attr")]
31 free_function: Option<String>,
32
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
59 #[xmlserde(name = b"function", ty = "child")]
60 functions: Vec<Function>,
61 #[xmlserde(name = b"function-inline", ty = "child")]
62 inline_functions: Vec<FunctionInline>,
63}
64
65impl Boxed {
66 #[doc(alias = "glib:name")]
67 pub fn g_name(&self) -> &str {
68 &self.g_name
69 }
70
71 pub fn is_foreign(&self) -> bool {
72 self.foreign.unwrap_or(false)
73 }
74
75 pub fn g_is_gtype_struct_for(&self) -> Option<&str> {
76 self.g_is_gtype_struct_for.as_deref()
77 }
78
79 pub fn g_type_name(&self) -> Option<&str> {
80 self.g_type_name.as_deref()
81 }
82
83 pub fn g_get_type(&self) -> Option<&str> {
84 self.g_get_type.as_deref()
85 }
86
87 pub fn symbol_prefix(&self) -> Option<&str> {
88 self.symbol_prefix.as_deref()
89 }
90
91 pub fn copy_function(&self) -> Option<&str> {
92 self.copy_function.as_deref()
93 }
94
95 pub fn free_function(&self) -> Option<&str> {
96 self.free_function.as_deref()
97 }
98
99 pub fn functions(&self) -> &[Function] {
100 &self.functions
101 }
102
103 pub fn inlined_functions(&self) -> &[FunctionInline] {
104 &self.inline_functions
105 }
106}
107
108impl_info!(Boxed);
109impl_attributable!(Boxed);
110impl_documentable!(Boxed);