Skip to main content

IArgumentCache

Trait IArgumentCache 

Source
pub trait IArgumentCache: IObject {
    // Provided methods
    fn m_object_argument(self) -> Object_2 { ... }
    fn set_m_object_argument(self, value: Object_2) { ... }
    fn m_object_argument_assembly_type_name(self) -> Il2CppString { ... }
    fn set_m_object_argument_assembly_type_name(self, value: Il2CppString) { ... }
    fn m_int_argument(self) -> i32 { ... }
    fn set_m_int_argument(self, value: i32) { ... }
    fn m_float_argument(self) -> f32 { ... }
    fn set_m_float_argument(self, value: f32) { ... }
    fn m_string_argument(self) -> Il2CppString { ... }
    fn set_m_string_argument(self, value: Il2CppString) { ... }
    fn m_bool_argument(self) -> bool { ... }
    fn set_m_bool_argument(self, value: bool) { ... }
}

Provided Methods§

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§