pub trait IRefIdObjectMethods: IRefIdObject {
// Provided methods
fn get_reference_id(self) -> i32 { ... }
fn format_type_string(
self,
type_string: impl Into<Il2CppString>,
) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_reference_id(self) -> i32
fn get_reference_id(self) -> i32
get_ReferenceID() overload
Sourcefn format_type_string(
self,
type_string: impl Into<Il2CppString>,
) -> Il2CppString
fn format_type_string( self, type_string: impl Into<Il2CppString>, ) -> Il2CppString
FormatTypeString(::unity::Il2CppString) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IRefIdObject> IRefIdObjectMethods for __T
Available on crate feature
moon_sharp-interpreter-refidobject only.