pub trait IGmapMapInfoContentMethods: IGmapMapInfoContent {
// Provided methods
fn initialize(self) { ... }
fn open_map_mini(self) { ... }
fn open_map_details(self) { ... }
fn close(self) { ... }
fn set_up_encount_info(self) { ... }
fn open_encount_info(self) { ... }
fn close_encount_info(self) { ... }
fn set_map_info(self, gmap_spot: impl Into<GmapSpot>) { ... }
fn set_item(
self,
prefixless_cid: impl Into<Il2CppString>,
nation_data: impl Into<HubNationData>,
iscomplete: impl Into<bool>,
is_unknown: impl Into<bool>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn initialize(self)
fn initialize(self)
initialize() overload
Sourcefn open_map_mini(self)
fn open_map_mini(self)
OpenMapMini() overload
Sourcefn open_map_details(self)
fn open_map_details(self)
OpenMapDetails() overload
Sourcefn set_up_encount_info(self)
fn set_up_encount_info(self)
SetUpEncountInfo() overload
Sourcefn open_encount_info(self)
fn open_encount_info(self)
OpenEncountInfo() overload
Sourcefn close_encount_info(self)
fn close_encount_info(self)
CloseEncountInfo() overload
Sourcefn set_map_info(self, gmap_spot: impl Into<GmapSpot>)
fn set_map_info(self, gmap_spot: impl Into<GmapSpot>)
SetMapInfo(crate::app::gmapspot::GmapSpot) overload
Sourcefn set_item(
self,
prefixless_cid: impl Into<Il2CppString>,
nation_data: impl Into<HubNationData>,
iscomplete: impl Into<bool>,
is_unknown: impl Into<bool>,
)
fn set_item( self, prefixless_cid: impl Into<Il2CppString>, nation_data: impl Into<HubNationData>, iscomplete: impl Into<bool>, is_unknown: impl Into<bool>, )
SetItem(::unity::Il2CppString, crate::app::hubnationdata::HubNationData, bool, bool) 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: IGmapMapInfoContent> IGmapMapInfoContentMethods for __T
Available on crate feature
app-gmapmapinfocontent only.