pub trait IHubAreaDataMethods: IHubAreaData {
Show 18 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_scene_name(self) -> Il2CppString { ... }
fn set_scene_name(self, value: impl Into<Il2CppString>) { ... }
fn get_locator_name(self) -> Il2CppString { ... }
fn set_locator_name(self, value: impl Into<Il2CppString>) { ... }
fn get_mid_h(self) -> Il2CppString { ... }
fn set_mid_h(self, value: impl Into<Il2CppString>) { ... }
fn get_map_point_no(self) -> u8 { ... }
fn set_map_point_no(self, value: impl Into<u8>) { ... }
fn get_facility_aid_list(self) -> Array<Il2CppString> { ... }
fn set_facility_aid_list(self, value: impl Into<Array<Il2CppString>>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
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_scene_name(self) -> Il2CppString
fn get_scene_name(self) -> Il2CppString
get_SceneName() overload
Sourcefn set_scene_name(self, value: impl Into<Il2CppString>)
fn set_scene_name(self, value: impl Into<Il2CppString>)
set_SceneName(::unity::Il2CppString) overload
Sourcefn get_locator_name(self) -> Il2CppString
fn get_locator_name(self) -> Il2CppString
get_LocatorName() overload
Sourcefn set_locator_name(self, value: impl Into<Il2CppString>)
fn set_locator_name(self, value: impl Into<Il2CppString>)
set_LocatorName(::unity::Il2CppString) overload
Sourcefn get_mid_h(self) -> Il2CppString
fn get_mid_h(self) -> Il2CppString
get_MID_H() overload
Sourcefn set_mid_h(self, value: impl Into<Il2CppString>)
fn set_mid_h(self, value: impl Into<Il2CppString>)
set_MID_H(::unity::Il2CppString) overload
Sourcefn get_map_point_no(self) -> u8
fn get_map_point_no(self) -> u8
get_MapPointNo() overload
Sourcefn set_map_point_no(self, value: impl Into<u8>)
fn set_map_point_no(self, value: impl Into<u8>)
set_MapPointNo(u8) overload
Sourcefn get_facility_aid_list(self) -> Array<Il2CppString>
fn get_facility_aid_list(self) -> Array<Il2CppString>
get_FacilityAidList() overload
Sourcefn set_facility_aid_list(self, value: impl Into<Array<Il2CppString>>)
fn set_facility_aid_list(self, value: impl Into<Array<Il2CppString>>)
set_FacilityAidList(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IHubAreaData> IHubAreaDataMethods for __T
Available on crate feature
app-hubareadata only.