Skip to main content

IBinFlwFileMethods

Trait IBinFlwFileMethods 

Source
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§

Source

fn init_object(self, resource_ptr: impl Into<IntPtr>) -> IntPtr

InitObject(::unity::IntPtr) overload

Source

fn close_object(self, object_ptr: impl Into<IntPtr>)

CloseObject(::unity::IntPtr) overload

Source

fn get_node_num(self) -> i32

GetNodeNum() overload

Source

fn get_entry_node_index(self, label: impl Into<Il2CppString>) -> i32

GetEntryNodeIndex(::unity::Il2CppString) overload

Source

fn get_node_data(self, index: impl Into<i32>) -> LMSFlowNodeData

GetNodeData(i32) overload

Source

fn get_case_indexes_from_branch_node(self, index: impl Into<i32>) -> Array<u16>

GetCaseIndexesFromBranchNode(i32) overload

Source

fn get_flow_param_text(self, offset: impl Into<i32>) -> Il2CppString

GetFlowParamText(i32) overload

Source

fn get_index_test(self, index: impl Into<i32>)

GetIndexTest(i32) 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: IBinFlwFile> IBinFlwFileMethods for __T

Available on crate feature nintendo-message_studio-lib-binflwfile only.