Skip to main content

IRuntimeConstructorInfoMethods

Trait IRuntimeConstructorInfoMethods 

Source
pub trait IRuntimeConstructorInfoMethods: IRuntimeConstructorInfo {
    // Provided methods
    fn get_module(self) -> Module { ... }
    fn get_runtime_module(self) -> RuntimeModule { ... }
    fn get_binding_flags(self) -> BindingFlags { ... }
    fn get_reflected_type_internal(self) -> RuntimeType { ... }
    fn serialization_to_string(self) -> Il2CppString { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_module(self) -> Module

get_Module() overload

Source

fn get_runtime_module(self) -> RuntimeModule

GetRuntimeModule() overload

Source

fn get_binding_flags(self) -> BindingFlags

get_BindingFlags() overload

Source

fn get_reflected_type_internal(self) -> RuntimeType

get_ReflectedTypeInternal() overload

Source

fn serialization_to_string(self) -> Il2CppString

SerializationToString() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IRuntimeConstructorInfo> IRuntimeConstructorInfoMethods for __T

Available on crate feature system-reflection-runtimeconstructorinfo only.