pub trait IGmapMapInfoContent_ItemInfoMethods: IGmapMapInfoContent_ItemInfo {
// Provided methods
fn setup_obj(self, root: impl Into<GameObject>) { ... }
fn show(self) { ... }
fn hide(self) { ... }
fn set_name(self, name: impl Into<Il2CppString>) { ... }
fn set_icon(self, icon_name: impl Into<Il2CppString>) { ... }
fn set_sub_hide(self) { ... }
fn set_arrow(self) { ... }
fn set_is_capture(
self,
is_capture: impl Into<bool>,
is_contains_lv1: impl Into<bool>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn setup_obj(self, root: impl Into<GameObject>)
fn setup_obj(self, root: impl Into<GameObject>)
SetupObj(crate::unity_engine::gameobject::GameObject) overload
Sourcefn set_name(self, name: impl Into<Il2CppString>)
fn set_name(self, name: impl Into<Il2CppString>)
SetName(::unity::Il2CppString) overload
Sourcefn set_icon(self, icon_name: impl Into<Il2CppString>)
fn set_icon(self, icon_name: impl Into<Il2CppString>)
SetIcon(::unity::Il2CppString) overload
Sourcefn set_sub_hide(self)
fn set_sub_hide(self)
SetSubHide() overload
Sourcefn set_is_capture(
self,
is_capture: impl Into<bool>,
is_contains_lv1: impl Into<bool>,
)
fn set_is_capture( self, is_capture: impl Into<bool>, is_contains_lv1: impl Into<bool>, )
SetIsCapture(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_ItemInfo> IGmapMapInfoContent_ItemInfoMethods for __T
Available on crate feature
app-gmapmapinfocontent only.