engage/generated/moon_sharp/interpreter/
iscriptprivateresource.rs1#[cfg(feature = "moon_sharp-interpreter-iscriptprivateresource-types")]
4mod __types {
5 #[allow(unused_imports)] use ::unity::prelude::*;
6
7 use super::*;
8
9 #[doc=include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/","docs/moon_sharp/interpreter/iscriptprivateresource/IScriptPrivateResource.md"))]
10 #[::unity::class(namespace = "MoonSharp.Interpreter", name = "IScriptPrivateResource")]
11 pub struct IScriptPrivateResource {}
12}
13
14#[cfg(feature = "moon_sharp-interpreter-iscriptprivateresource-types")]
15pub use __types::*;
16
17#[cfg(feature = "moon_sharp-interpreter-iscriptprivateresource")]
18pub trait IIScriptPrivateResourceMethods: IIScriptPrivateResource {
19 #[doc = "`get_OwnerScript()` overload"]
20 fn get_owner_script(self) -> crate::moon_sharp::interpreter::script::Script {
21 unsafe {
22 let __receiver =
23 <IScriptPrivateResource as ::unity::FromIlInstance>::from_il_instance(<Self as ::unity::SystemObject>::as_instance(self));
24 {
25 let __vt = ::unity::Cast::get_class(__receiver).raw().get_vtable();
26 let __vi = *__vt.get(0usize).unwrap_or_else(|| {
27 panic!(
28 "unity: virtual slot {}
29 out of range (vtable len {}
30) on the runtime class behind {}
31 (method `{}
32`)",
33 0usize,
34 __vt.len(),
35 <IScriptPrivateResource as ::unity::ClassIdentity>::NAME,
36 "get_OwnerScript",
37 )
38 });
39 let __inner: extern "C" fn(IScriptPrivateResource, ::unity::OptionalMethod) -> crate::moon_sharp::interpreter::script::Script =
40 ::core::mem::transmute(__vi.method_ptr);
41 let __mi: ::unity::OptionalMethod = ::core::option::Option::Some(&*(__vi.method_info as *const ::unity::MethodInfo as *const ()));
42 __inner(__receiver, __mi)
43 }
44 }
45 }
46}
47
48#[cfg(feature = "moon_sharp-interpreter-iscriptprivateresource")]
49impl<__T: IIScriptPrivateResource> IIScriptPrivateResourceMethods for __T {}
50
51#[cfg(feature = "moon_sharp-interpreter-iscriptprivateresource")]
52impl IScriptPrivateResource {
53 pub fn get_owner_script_method_info() -> &'static ::unity::il2cpp::MethodInfo {
54 <Self as ::unity::ClassIdentity>::class().raw().get_methods()[0]
55 }
56}
57
58#[cfg(feature = "moon_sharp-interpreter-iscriptprivateresource")]
59impl IScriptPrivateResource {
60 #[doc = "Direct (non-virtual) call to `IScriptPrivateResource`'s own `get_OwnerScript`. Bypasses the vtable, so it won't hit an override/patch — use it for base calls."]
61 pub unsafe fn get_owner_script(this: impl ::core::convert::Into<::unity::IlInstance>) -> crate::moon_sharp::interpreter::script::Script {
62 let __mi = Self::get_owner_script_method_info();
63 let __inner: extern "C" fn(::unity::IlInstance, ::unity::OptionalMethod) -> crate::moon_sharp::interpreter::script::Script =
64 ::core::mem::transmute(__mi.method_ptr);
65 __inner(this.into(), ::core::option::Option::None)
66 }
67}
68
69#[cfg(feature = "moon_sharp-interpreter-iscriptprivateresource")]
70#[doc(hidden)]
71pub mod prelude {
72 pub use super::{IIScriptPrivateResource, IIScriptPrivateResourceMethods, IScriptPrivateResource};
73}