Skip to main content

IDragonRideResultUIMethods

Trait IDragonRideResultUIMethods 

Source
pub trait IDragonRideResultUIMethods: IDragonRideResultUI {
    // Provided methods
    fn ctor(self) { ... }
    fn init(
        self,
        root_obj: impl Into<GameObject>,
        data: impl Into<DragonRideResultUI_DataSet>,
    ) { ... }
    fn next_phase(self) { ... }
    fn tick(self) { ... }
    fn play_result(self) { ... }
    fn play_close_anime(self) { ... }
    fn voice_result_perfect(self) { ... }
    fn voice_result_good(self) { ... }
    fn voice_result_bad(self) { ... }
    fn destroy_result(self) { ... }
    fn get_is_finished(self) -> bool { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn init( self, root_obj: impl Into<GameObject>, data: impl Into<DragonRideResultUI_DataSet>, )

Init(crate::unity_engine::gameobject::GameObject, crate::app::dragonrideresultui::DragonRideResultUI_DataSet) overload

Source

fn next_phase(self)

NextPhase() overload

Source

fn tick(self)

Tick() overload

Source

fn play_result(self)

PlayResult() overload

Source

fn play_close_anime(self)

PlayCloseAnime() overload

Source

fn voice_result_perfect(self)

VoiceResultPerfect() overload

Source

fn voice_result_good(self)

VoiceResultGood() overload

Source

fn voice_result_bad(self)

VoiceResultBad() overload

Source

fn destroy_result(self)

DestroyResult() overload

Source

fn get_is_finished(self) -> bool

get_IsFinished() 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: IDragonRideResultUI> IDragonRideResultUIMethods for __T

Available on crate feature app-dragonrideresultui only.