engage/generated/moon_sharp/interpreter/
datatype.rs1#[cfg(feature = "moon_sharp-interpreter-datatype-types")]
4mod __types {
5 #[allow(unused_imports)] use ::unity::prelude::*;
6
7 use super::*;
8 use crate::system::{
9 object::{IObject, Object},
10 r#enum::{Enum, IEnum},
11 valuetype::{IValueType, ValueType},
12 };
13
14 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/moon_sharp/interpreter/datatype/DataType.md"))]
15 #[repr(C)]
16 #[derive(::core::clone::Clone, ::core::marker::Copy, ::core::fmt::Debug, ::core::cmp::PartialEq, ::core::cmp::Eq)]
17 pub struct DataType {
18 pub value: i32,
19 }
20 impl ::unity::ClassIdentity for DataType {
21 const NAME: &'static str = "DataType";
22 const NAMESPACE: &'static str = "MoonSharp.Interpreter";
23
24 fn class() -> ::unity::Class {
25 static CACHE: ::std::sync::OnceLock<::unity::Class> = ::std::sync::OnceLock::new();
26 *CACHE.get_or_init(|| ::unity::Class::lookup(Self::NAMESPACE, Self::NAME))
27 }
28 }
29 impl ::unity::IlType for DataType {
30 fn il_type() -> &'static ::unity::il2cpp::Il2CppType {
31 &<Self as ::unity::ClassIdentity>::class().raw()._1.byval_arg
32 }
33 }
34 impl DataType {
35 pub fn nil() -> Self {
36 Self { value: 0 }
37 }
38
39 pub fn void() -> Self {
40 Self { value: 1 }
41 }
42
43 pub fn boolean() -> Self {
44 Self { value: 2 }
45 }
46
47 pub fn number() -> Self {
48 Self { value: 3 }
49 }
50
51 pub fn string() -> Self {
52 Self { value: 4 }
53 }
54
55 pub fn function() -> Self {
56 Self { value: 5 }
57 }
58
59 pub fn table() -> Self {
60 Self { value: 6 }
61 }
62
63 pub fn tuple() -> Self {
64 Self { value: 7 }
65 }
66
67 pub fn user_data() -> Self {
68 Self { value: 8 }
69 }
70
71 pub fn thread() -> Self {
72 Self { value: 9 }
73 }
74
75 pub fn clr_function() -> Self {
76 Self { value: 10 }
77 }
78
79 pub fn tail_call_request() -> Self {
80 Self { value: 11 }
81 }
82
83 pub fn yield_request() -> Self {
84 Self { value: 12 }
85 }
86 }
87}
88
89#[cfg(feature = "moon_sharp-interpreter-datatype-types")]
90pub use __types::*;
91
92#[cfg(feature = "moon_sharp-interpreter-datatype")]
93#[doc(hidden)]
94pub mod prelude {
95 pub use super::DataType;
96 #[cfg(feature = "system-object")]
97 pub use crate::system::object::IObjectMethods;
98 #[cfg(feature = "system-enum")]
99 pub use crate::system::r#enum::IEnumMethods;
100 #[cfg(feature = "system-valuetype")]
101 pub use crate::system::valuetype::IValueTypeMethods;
102 pub use crate::system::{object::IObject, r#enum::IEnum, valuetype::IValueType};
103}