pub trait IHubFacilityDataMethods: IHubFacilityData {
Show 16 methods
// Provided methods
fn get_aid(self) -> Il2CppString { ... }
fn set_aid(self, value: impl Into<Il2CppString>) { ... }
fn get_mid(self) -> Il2CppString { ... }
fn set_mid(self, value: impl Into<Il2CppString>) { ... }
fn get_condition_cid(self) -> Il2CppString { ... }
fn set_condition_cid(self, value: impl Into<Il2CppString>) { ... }
fn get_icon_name(self) -> Il2CppString { ... }
fn set_icon_name(self, value: impl Into<Il2CppString>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn get_prefixless_aid(self) -> Il2CppString { ... }
fn get_first_access_flag(self) -> Il2CppString { ... }
fn is_first_access_flag(self) -> bool { ... }
fn set_first_access_flag(self) { ... }
fn reset_first_access_flag(self) { ... }
fn is_complete(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_aid(self) -> Il2CppString
fn get_aid(self) -> Il2CppString
get_AID() overload
Sourcefn set_aid(self, value: impl Into<Il2CppString>)
fn set_aid(self, value: impl Into<Il2CppString>)
set_AID(::unity::Il2CppString) overload
Sourcefn get_mid(self) -> Il2CppString
fn get_mid(self) -> Il2CppString
get_MID() overload
Sourcefn set_mid(self, value: impl Into<Il2CppString>)
fn set_mid(self, value: impl Into<Il2CppString>)
set_MID(::unity::Il2CppString) overload
Sourcefn get_condition_cid(self) -> Il2CppString
fn get_condition_cid(self) -> Il2CppString
get_ConditionCID() overload
Sourcefn set_condition_cid(self, value: impl Into<Il2CppString>)
fn set_condition_cid(self, value: impl Into<Il2CppString>)
set_ConditionCID(::unity::Il2CppString) overload
Sourcefn get_icon_name(self) -> Il2CppString
fn get_icon_name(self) -> Il2CppString
get_IconName() overload
Sourcefn set_icon_name(self, value: impl Into<Il2CppString>)
fn set_icon_name(self, value: impl Into<Il2CppString>)
set_IconName(::unity::Il2CppString) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn get_prefixless_aid(self) -> Il2CppString
fn get_prefixless_aid(self) -> Il2CppString
GetPrefixlessAid() overload
Sourcefn get_first_access_flag(self) -> Il2CppString
fn get_first_access_flag(self) -> Il2CppString
GetFirstAccessFlag() overload
Sourcefn is_first_access_flag(self) -> bool
fn is_first_access_flag(self) -> bool
IsFirstAccessFlag() overload
Sourcefn set_first_access_flag(self)
fn set_first_access_flag(self)
SetFirstAccessFlag() overload
Sourcefn reset_first_access_flag(self)
fn reset_first_access_flag(self)
ResetFirstAccessFlag() overload
Sourcefn is_complete(self) -> bool
fn is_complete(self) -> bool
IsComplete() 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: IHubFacilityData> IHubFacilityDataMethods for __T
Available on crate feature
app-hubfacilitydata only.