pub trait IFishingPictureItemMethods: IFishingPictureItem {
Show 13 methods
// Provided methods
fn get_fish_size(self) -> i32 { ... }
fn set_fish_size(self, value: impl Into<i32>) { ... }
fn get_is_crown(self) -> bool { ... }
fn set_is_crown(self, value: impl Into<bool>) { ... }
fn get_is_unknown(self) -> bool { ... }
fn set_is_unknown(self, value: impl Into<bool>) { ... }
fn ctor(self) { ... }
fn ctor_2(
self,
set_data: impl Into<FishingFishData>,
set_menu: impl Into<GameObject>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
fn on_select(self) { ... }
fn on_deselect(self) { ... }
fn on_close(self) { ... }
}Provided Methods§
Sourcefn get_fish_size(self) -> i32
fn get_fish_size(self) -> i32
get_FishSize() overload
Sourcefn set_fish_size(self, value: impl Into<i32>)
fn set_fish_size(self, value: impl Into<i32>)
set_FishSize(i32) overload
Sourcefn get_is_crown(self) -> bool
fn get_is_crown(self) -> bool
get_IsCrown() overload
Sourcefn set_is_crown(self, value: impl Into<bool>)
fn set_is_crown(self, value: impl Into<bool>)
set_IsCrown(bool) overload
Sourcefn get_is_unknown(self) -> bool
fn get_is_unknown(self) -> bool
get_IsUnknown() overload
Sourcefn set_is_unknown(self, value: impl Into<bool>)
fn set_is_unknown(self, value: impl Into<bool>)
set_IsUnknown(bool) overload
Sourcefn ctor_2(
self,
set_data: impl Into<FishingFishData>,
set_menu: impl Into<GameObject>,
)
fn ctor_2( self, set_data: impl Into<FishingFishData>, set_menu: impl Into<GameObject>, )
.ctor(crate::app::fishingfishdata::FishingFishData, crate::unity_engine::gameobject::GameObject) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
Sourcefn on_deselect(self)
fn on_deselect(self)
OnDeselect() 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: IFishingPictureItem> IFishingPictureItemMethods for __T
Available on crate feature
app-fishingpictureitem only.