pub trait IProcInst: IObject {
Show 28 methods
// Provided methods
fn m_descs(self) -> Array<ProcDesc> { ... }
fn set_m_descs(self, value: Array<ProcDesc>) { ... }
fn m_desc_index(self) -> i32 { ... }
fn set_m_desc_index(self, value: i32) { ... }
fn m_name(self) -> Il2CppString { ... }
fn set_m_name(self, value: Il2CppString) { ... }
fn m_hash_code(self) -> i32 { ... }
fn set_m_hash_code(self, value: i32) { ... }
fn m_super(self) -> ProcInst { ... }
fn set_m_super(self, value: ProcInst) { ... }
fn m_child(self) -> ProcInst { ... }
fn set_m_child(self, value: ProcInst) { ... }
fn m_prev(self) -> ProcInst { ... }
fn set_m_prev(self, value: ProcInst) { ... }
fn m_next(self) -> ProcInst { ... }
fn set_m_next(self, value: ProcInst) { ... }
fn m_persistent(self) -> ProcVoidMethod { ... }
fn set_m_persistent(self, value: ProcVoidMethod) { ... }
fn m_state(self) -> ProcInst_State { ... }
fn set_m_state(self, value: ProcInst_State) { ... }
fn m_suspend(self) -> i32 { ... }
fn set_m_suspend(self, value: i32) { ... }
fn m_wait_time(self) -> f32 { ... }
fn set_m_wait_time(self, value: f32) { ... }
fn m_tick_time(self) -> f32 { ... }
fn set_m_tick_time(self, value: f32) { ... }
fn m_stack(self) -> RawValueStack { ... }
fn set_m_stack(self, value: RawValueStack) { ... }
}Provided Methods§
fn m_descs(self) -> Array<ProcDesc>
fn set_m_descs(self, value: Array<ProcDesc>)
fn m_desc_index(self) -> i32
fn set_m_desc_index(self, value: i32)
fn m_name(self) -> Il2CppString
fn set_m_name(self, value: Il2CppString)
fn m_hash_code(self) -> i32
fn set_m_hash_code(self, value: i32)
fn m_super(self) -> ProcInst
fn set_m_super(self, value: ProcInst)
fn m_child(self) -> ProcInst
fn set_m_child(self, value: ProcInst)
fn m_prev(self) -> ProcInst
fn set_m_prev(self, value: ProcInst)
fn m_next(self) -> ProcInst
fn set_m_next(self, value: ProcInst)
fn m_persistent(self) -> ProcVoidMethod
fn set_m_persistent(self, value: ProcVoidMethod)
fn m_state(self) -> ProcInst_State
fn set_m_state(self, value: ProcInst_State)
fn m_suspend(self) -> i32
fn set_m_suspend(self, value: i32)
fn m_wait_time(self) -> f32
fn set_m_wait_time(self, value: f32)
fn m_tick_time(self) -> f32
fn set_m_tick_time(self, value: f32)
fn m_stack(self) -> RawValueStack
fn set_m_stack(self, value: RawValueStack)
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.