Skip to main content

ILaterTalkSetterMethods

Trait ILaterTalkSetterMethods 

Source
pub trait ILaterTalkSetterMethods: ILaterTalkSetter {
Show 15 methods // Provided methods fn init(self) { ... } fn update_data(self) { ... } fn set_unit_data( self, unit: impl Into<Unit>, info: impl Into<LaterTalkSetter_UnitInfo>, ) { ... } fn get_is_started(self) -> bool { ... } fn get_is_finished(self) -> bool { ... } fn get_is_finished_completely(self) -> bool { ... } fn get_current_unit(self) -> LaterTalkSetter_UnitData { ... } fn get_next_unit(self) -> LaterTalkSetter_UnitData { ... } fn get_last_disp_time(self) -> f32 { ... } fn get_display_time(self) -> f32 { ... } fn start(self) { ... } fn update(self) { ... } fn move_next(self) { ... } fn force_finish(self, fade_out_time: impl Into<f32>) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn init(self)

Init() overload

Source

fn update_data(self)

UpdateData() overload

Source

fn set_unit_data( self, unit: impl Into<Unit>, info: impl Into<LaterTalkSetter_UnitInfo>, )

SetUnitData(crate::app::unit::Unit, crate::app::latertalksetter::LaterTalkSetter_UnitInfo) overload

Source

fn get_is_started(self) -> bool

get_IsStarted() overload

Source

fn get_is_finished(self) -> bool

get_IsFinished() overload

Source

fn get_is_finished_completely(self) -> bool

get_IsFinishedCompletely() overload

Source

fn get_current_unit(self) -> LaterTalkSetter_UnitData

get_CurrentUnit() overload

Source

fn get_next_unit(self) -> LaterTalkSetter_UnitData

get_NextUnit() overload

Source

fn get_last_disp_time(self) -> f32

get_LastDispTime() overload

Source

fn get_display_time(self) -> f32

get_DisplayTime() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn move_next(self)

MoveNext() overload

Source

fn force_finish(self, fade_out_time: impl Into<f32>)

ForceFinish(f32) overload

Source

fn ctor(self)

.ctor() 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: ILaterTalkSetter> ILaterTalkSetterMethods for __T

Available on crate feature app-latertalksetter only.