pub trait IBinFlwFileMethods: IBinFlwFile {
// Provided methods
fn init_object(self, resource_ptr: impl Into<IntPtr>) -> IntPtr { ... }
fn close_object(self, object_ptr: impl Into<IntPtr>) { ... }
fn get_node_num(self) -> i32 { ... }
fn get_entry_node_index(self, label: impl Into<Il2CppString>) -> i32 { ... }
fn get_node_data(self, index: impl Into<i32>) -> LMSFlowNodeData { ... }
fn get_case_indexes_from_branch_node(
self,
index: impl Into<i32>,
) -> Array<u16> { ... }
fn get_flow_param_text(self, offset: impl Into<i32>) -> Il2CppString { ... }
fn get_index_test(self, index: impl Into<i32>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn init_object(self, resource_ptr: impl Into<IntPtr>) -> IntPtr
fn init_object(self, resource_ptr: impl Into<IntPtr>) -> IntPtr
InitObject(::unity::IntPtr) overload
Sourcefn close_object(self, object_ptr: impl Into<IntPtr>)
fn close_object(self, object_ptr: impl Into<IntPtr>)
CloseObject(::unity::IntPtr) overload
Sourcefn get_node_num(self) -> i32
fn get_node_num(self) -> i32
GetNodeNum() overload
Sourcefn get_entry_node_index(self, label: impl Into<Il2CppString>) -> i32
fn get_entry_node_index(self, label: impl Into<Il2CppString>) -> i32
GetEntryNodeIndex(::unity::Il2CppString) overload
Sourcefn get_node_data(self, index: impl Into<i32>) -> LMSFlowNodeData
fn get_node_data(self, index: impl Into<i32>) -> LMSFlowNodeData
GetNodeData(i32) overload
Sourcefn get_case_indexes_from_branch_node(self, index: impl Into<i32>) -> Array<u16>
fn get_case_indexes_from_branch_node(self, index: impl Into<i32>) -> Array<u16>
GetCaseIndexesFromBranchNode(i32) overload
Sourcefn get_flow_param_text(self, offset: impl Into<i32>) -> Il2CppString
fn get_flow_param_text(self, offset: impl Into<i32>) -> Il2CppString
GetFlowParamText(i32) overload
Sourcefn get_index_test(self, index: impl Into<i32>)
fn get_index_test(self, index: impl Into<i32>)
GetIndexTest(i32) 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: IBinFlwFile> IBinFlwFileMethods for __T
Available on crate feature
nintendo-message_studio-lib-binflwfile only.