Skip to main content

IFishingPictureItemMethods

Trait IFishingPictureItemMethods 

Source
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§

Source

fn get_fish_size(self) -> i32

get_FishSize() overload

Source

fn set_fish_size(self, value: impl Into<i32>)

set_FishSize(i32) overload

Source

fn get_is_crown(self) -> bool

get_IsCrown() overload

Source

fn set_is_crown(self, value: impl Into<bool>)

set_IsCrown(bool) overload

Source

fn get_is_unknown(self) -> bool

get_IsUnknown() overload

Source

fn set_is_unknown(self, value: impl Into<bool>)

set_IsUnknown(bool) overload

Source

fn ctor(self)

.ctor() overload

Source

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

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn on_deselect(self)

OnDeselect() overload

Source

fn on_close(self)

OnClose() 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§

Source§

impl<__T: IFishingPictureItem> IFishingPictureItemMethods for __T

Available on crate feature app-fishingpictureitem only.