engage/generated/unity_engine/
touchscreenkeyboard_internalconstructorhelperarguments.rs1#[cfg(feature = "unity_engine-touchscreenkeyboard_internalconstructorhelperarguments-types")]
4mod __types {
5 #[allow(unused_imports)] use ::unity::prelude::*;
6
7 use super::*;
8 use crate::system::{
9 object::{IObject, Object},
10 valuetype::{IValueType, ValueType},
11 };
12
13 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/unity_engine/touchscreenkeyboard_internalconstructorhelperarguments/TouchScreenKeyboard_InternalConstructorHelperArguments.md"))]
14 #[repr(C)]
15 #[derive(::core::clone::Clone, ::core::marker::Copy)]
16 pub struct TouchScreenKeyboard_InternalConstructorHelperArguments {
17 pub keyboard_type: u32,
18 pub autocorrection: u32,
19 pub multiline: u32,
20 pub secure: u32,
21 pub alert: u32,
22 pub character_limit: i32,
23 }
24 impl ::unity::ClassIdentity for TouchScreenKeyboard_InternalConstructorHelperArguments {
25 const NAME: &'static str = "TouchScreenKeyboard_InternalConstructorHelperArguments";
26 const NAMESPACE: &'static str = "UnityEngine";
27
28 fn class() -> ::unity::Class {
29 static CACHE: ::std::sync::OnceLock<::unity::Class> = ::std::sync::OnceLock::new();
30 *CACHE.get_or_init(|| ::unity::Class::lookup(Self::NAMESPACE, Self::NAME))
31 }
32 }
33 impl ::unity::IlType for TouchScreenKeyboard_InternalConstructorHelperArguments {
34 fn il_type() -> &'static ::unity::il2cpp::Il2CppType {
35 &<Self as ::unity::ClassIdentity>::class().raw()._1.byval_arg
36 }
37 }
38}
39
40#[cfg(feature = "unity_engine-touchscreenkeyboard_internalconstructorhelperarguments-types")]
41pub use __types::*;
42
43#[cfg(feature = "unity_engine-touchscreenkeyboard_internalconstructorhelperarguments")]
44#[doc(hidden)]
45pub mod prelude {
46 pub use super::TouchScreenKeyboard_InternalConstructorHelperArguments;
47 #[cfg(feature = "system-object")]
48 pub use crate::system::object::IObjectMethods;
49 #[cfg(feature = "system-valuetype")]
50 pub use crate::system::valuetype::IValueTypeMethods;
51 pub use crate::system::{object::IObject, valuetype::IValueType};
52}