pub trait ILaterTalkSequenceMethods: ILaterTalkSequence {
// Provided methods
fn get_setter(self) -> LaterTalkSetter { ... }
fn set_setter(self, value: impl Into<LaterTalkSetter>) { ... }
fn set_up(self) -> IEnumerator { ... }
fn unload(self) { ... }
fn fade_in(self) -> IEnumerator { ... }
fn start_load_next(self) { ... }
fn tick(self) -> IEnumerator { ... }
fn fade_out(self) -> IEnumerator { ... }
fn start_slide_in(self, time: impl Into<f32>) { ... }
fn start_slide_out(self, time: impl Into<f32>) { ... }
fn slide(self) -> IEnumerator { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_setter(self) -> LaterTalkSetter
fn get_setter(self) -> LaterTalkSetter
get_Setter() overload
Sourcefn set_setter(self, value: impl Into<LaterTalkSetter>)
fn set_setter(self, value: impl Into<LaterTalkSetter>)
set_Setter(crate::app::latertalksetter::LaterTalkSetter) overload
Sourcefn set_up(self) -> IEnumerator
fn set_up(self) -> IEnumerator
SetUp() overload
Sourcefn fade_in(self) -> IEnumerator
fn fade_in(self) -> IEnumerator
FadeIn() overload
Sourcefn start_load_next(self)
fn start_load_next(self)
StartLoadNext() overload
Sourcefn tick(self) -> IEnumerator
fn tick(self) -> IEnumerator
Tick() overload
Sourcefn fade_out(self) -> IEnumerator
fn fade_out(self) -> IEnumerator
FadeOut() overload
Sourcefn start_slide_in(self, time: impl Into<f32>)
fn start_slide_in(self, time: impl Into<f32>)
StartSlideIn(f32) overload
Sourcefn start_slide_out(self, time: impl Into<f32>)
fn start_slide_out(self, time: impl Into<f32>)
StartSlideOut(f32) overload
Sourcefn slide(self) -> IEnumerator
fn slide(self) -> IEnumerator
Slide() 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: ILaterTalkSequence> ILaterTalkSequenceMethods for __T
Available on crate feature
app-latertalksequence only.