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§
Sourcefn get_e_jid(self) -> Il2CppString
fn get_e_jid(self) -> Il2CppString
get_EJid() overload
Sourcefn set_e_jid(self, value: impl Into<Il2CppString>)
fn set_e_jid(self, value: impl Into<Il2CppString>)
set_EJid(::unity::Il2CppString) overload
Sourcefn get_jobs(self) -> Array<Il2CppString>
fn get_jobs(self) -> Array<Il2CppString>
get_Jobs() overload
Sourcefn set_jobs(self, value: impl Into<Array<Il2CppString>>)
fn set_jobs(self, value: impl Into<Array<Il2CppString>>)
set_Jobs(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_flag(self) -> EncountJobData_FlagField
fn get_flag(self) -> EncountJobData_FlagField
get_Flag() overload
Sourcefn set_flag(self, value: impl Into<EncountJobData_FlagField>)
fn set_flag(self, value: impl Into<EncountJobData_FlagField>)
set_Flag(crate::app::encountjobdata::EncountJobData_FlagField) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn to_string(self) -> Il2CppString
fn to_string(self) -> Il2CppString
ToString() overload
Sourcefn get_jid(self, index: impl Into<i32>) -> Il2CppString
fn get_jid(self, index: impl Into<i32>) -> Il2CppString
GetJid(i32) overload
Sourcefn get_jid_list(self) -> List_1<Il2CppString>
fn get_jid_list(self) -> List_1<Il2CppString>
GetJidList() overload
Sourcefn get_jid_count(self) -> i32
fn get_jid_count(self) -> i32
GetJidCount() overload
Sourcefn get_prefixless_e_jid(self) -> Il2CppString
fn get_prefixless_e_jid(self) -> Il2CppString
GetPrefixlessEJid() overload
Sourcefn is_cc_random_selected(self) -> bool
fn is_cc_random_selected(self) -> bool
IsCcRandomSelected() overload
Sourcefn is_contains_from_jid(self, jid: impl Into<Il2CppString>) -> bool
fn is_contains_from_jid(self, jid: impl Into<Il2CppString>) -> bool
IsContainsFromJid(::unity::Il2CppString) 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: IEncountJobData> IEncountJobDataMethods for __T
Available on crate feature
app-encountjobdata only.