Skip to main content

IEncountJobDataMethods

Trait IEncountJobDataMethods 

Source
pub trait IEncountJobDataMethods: IEncountJobData {
Show 15 methods // Provided methods fn get_e_jid(self) -> Il2CppString { ... } fn set_e_jid(self, value: impl Into<Il2CppString>) { ... } fn get_jobs(self) -> Array<Il2CppString> { ... } fn set_jobs(self, value: impl Into<Array<Il2CppString>>) { ... } fn get_flag(self) -> EncountJobData_FlagField { ... } fn set_flag(self, value: impl Into<EncountJobData_FlagField>) { ... } fn get_debug_name(self) -> Il2CppString { ... } fn to_string(self) -> Il2CppString { ... } fn get_jid(self, index: impl Into<i32>) -> Il2CppString { ... } fn get_jid_list(self) -> List_1<Il2CppString> { ... } fn get_jid_count(self) -> i32 { ... } fn get_prefixless_e_jid(self) -> Il2CppString { ... } fn is_cc_random_selected(self) -> bool { ... } fn is_contains_from_jid(self, jid: impl Into<Il2CppString>) -> bool { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_e_jid(self) -> Il2CppString

get_EJid() overload

Source

fn set_e_jid(self, value: impl Into<Il2CppString>)

set_EJid(::unity::Il2CppString) overload

Source

fn get_jobs(self) -> Array<Il2CppString>

get_Jobs() overload

Source

fn set_jobs(self, value: impl Into<Array<Il2CppString>>)

set_Jobs(::unity::Array<::unity::Il2CppString>) overload

Source

fn get_flag(self) -> EncountJobData_FlagField

get_Flag() overload

Source

fn set_flag(self, value: impl Into<EncountJobData_FlagField>)

set_Flag(crate::app::encountjobdata::EncountJobData_FlagField) overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn to_string(self) -> Il2CppString

ToString() overload

Source

fn get_jid(self, index: impl Into<i32>) -> Il2CppString

GetJid(i32) overload

Source

fn get_jid_list(self) -> List_1<Il2CppString>

GetJidList() overload

Source

fn get_jid_count(self) -> i32

GetJidCount() overload

Source

fn get_prefixless_e_jid(self) -> Il2CppString

GetPrefixlessEJid() overload

Source

fn is_cc_random_selected(self) -> bool

IsCcRandomSelected() overload

Source

fn is_contains_from_jid(self, jid: impl Into<Il2CppString>) -> bool

IsContainsFromJid(::unity::Il2CppString) 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: IEncountJobData> IEncountJobDataMethods for __T

Available on crate feature app-encountjobdata only.