1#![no_std]
8#![deny(unsafe_code)]
9#![allow(unused_imports)]
10
11#[doc(hidden)]
12mod prelude;
13
14mod feature;
15pub use feature::*;
16
17mod language;
18pub use language::*;
19
20mod r#type;
21pub use r#type::*;
22
23#[cfg(feature = "language-c")]
24pub mod c {
26 pub mod r#type;
27 pub use r#type::*;
28}
29
30#[cfg(feature = "language-cpp")]
31pub mod cpp {
33 pub mod r#type;
34 pub use r#type::*;
35}
36
37#[cfg(feature = "language-csharp")]
38pub mod csharp {
40 pub mod r#type;
41 pub use r#type::*;
42}
43
44#[cfg(feature = "language-dart")]
45pub mod dart {
47 pub mod r#type;
48 pub use r#type::*;
49}
50
51#[cfg(feature = "language-go")]
52pub mod go {
54 pub mod r#type;
55 pub use r#type::*;
56}
57
58#[cfg(feature = "language-java")]
59pub mod java {
61 pub mod r#type;
62 pub use r#type::*;
63}
64
65#[cfg(feature = "language-javascript")]
66pub mod javascript {
68 pub mod r#type;
69 pub use r#type::*;
70}
71
72#[cfg(feature = "language-python")]
73pub mod python {
75 pub mod r#type;
76 pub use r#type::*;
77}
78
79#[cfg(feature = "language-ruby")]
80pub mod ruby {
82 pub mod r#type;
83 pub use r#type::*;
84}
85
86pub mod rust {
88 pub mod r#type;
89 pub use r#type::*;
90}
91
92#[cfg(feature = "language-swift")]
93pub mod swift {
95 pub mod r#type;
96 pub use r#type::*;
97}
98
99#[cfg(feature = "language-typescript")]
100pub mod typescript {
102 pub mod r#type;
103 pub use r#type::*;
104}
105
106