Skip to main content

IFishingResultUIMethods

Trait IFishingResultUIMethods 

Source
pub trait IFishingResultUIMethods: IFishingResultUI {
    // Provided methods
    fn get_is_ready(self) -> bool { ... }
    fn get_is_finish(self) -> bool { ... }
    fn ctor(self) { ... }
    fn init(
        self,
        root_obj: impl Into<GameObject>,
        set_data: impl Into<FishingResultData>,
        time_limit: impl Into<f32>,
    ) { ... }
    fn overwrite_user_data(self) { ... }
    fn next_phase(self) { ... }
    fn start(self) { ... }
    fn tick(self) { ... }
    fn destroy_result(self) { ... }
    fn close_result(self) { ... }
    fn is_closed_result(self) -> bool { ... }
}

Provided Methods§

Source

fn get_is_ready(self) -> bool

get_IsReady() overload

Source

fn get_is_finish(self) -> bool

get_IsFinish() overload

Source

fn ctor(self)

.ctor() overload

Source

fn init( self, root_obj: impl Into<GameObject>, set_data: impl Into<FishingResultData>, time_limit: impl Into<f32>, )

Init(crate::unity_engine::gameobject::GameObject, crate::app::fishingresultdata::FishingResultData, f32) overload

Source

fn overwrite_user_data(self)

OverwriteUserData() overload

Source

fn next_phase(self)

NextPhase() overload

Source

fn start(self)

Start() overload

Source

fn tick(self)

Tick() overload

Source

fn destroy_result(self)

DestroyResult() overload

Source

fn close_result(self)

CloseResult() overload

Source

fn is_closed_result(self) -> bool

IsClosedResult() 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: IFishingResultUI> IFishingResultUIMethods for __T

Available on crate feature app-fishingresultui only.