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§
Sourcefn update_data(self)
fn update_data(self)
UpdateData() overload
Sourcefn set_unit_data(
self,
unit: impl Into<Unit>,
info: impl Into<LaterTalkSetter_UnitInfo>,
)
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
Sourcefn get_is_started(self) -> bool
fn get_is_started(self) -> bool
get_IsStarted() overload
Sourcefn get_is_finished(self) -> bool
fn get_is_finished(self) -> bool
get_IsFinished() overload
Sourcefn get_is_finished_completely(self) -> bool
fn get_is_finished_completely(self) -> bool
get_IsFinishedCompletely() overload
Sourcefn get_current_unit(self) -> LaterTalkSetter_UnitData
fn get_current_unit(self) -> LaterTalkSetter_UnitData
get_CurrentUnit() overload
Sourcefn get_next_unit(self) -> LaterTalkSetter_UnitData
fn get_next_unit(self) -> LaterTalkSetter_UnitData
get_NextUnit() overload
Sourcefn get_last_disp_time(self) -> f32
fn get_last_disp_time(self) -> f32
get_LastDispTime() overload
Sourcefn get_display_time(self) -> f32
fn get_display_time(self) -> f32
get_DisplayTime() overload
Sourcefn force_finish(self, fade_out_time: impl Into<f32>)
fn force_finish(self, fade_out_time: impl Into<f32>)
ForceFinish(f32) 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: ILaterTalkSetter> ILaterTalkSetterMethods for __T
Available on crate feature
app-latertalksetter only.