Skip to main content

ILaterTalkSequenceMethods

Trait ILaterTalkSequenceMethods 

Source
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§

Source

fn get_setter(self) -> LaterTalkSetter

get_Setter() overload

Source

fn set_setter(self, value: impl Into<LaterTalkSetter>)

set_Setter(crate::app::latertalksetter::LaterTalkSetter) overload

Source

fn set_up(self) -> IEnumerator

SetUp() overload

Source

fn unload(self)

Unload() overload

Source

fn fade_in(self) -> IEnumerator

FadeIn() overload

Source

fn start_load_next(self)

StartLoadNext() overload

Source

fn tick(self) -> IEnumerator

Tick() overload

Source

fn fade_out(self) -> IEnumerator

FadeOut() overload

Source

fn start_slide_in(self, time: impl Into<f32>)

StartSlideIn(f32) overload

Source

fn start_slide_out(self, time: impl Into<f32>)

StartSlideOut(f32) overload

Source

fn slide(self) -> IEnumerator

Slide() 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: ILaterTalkSequence> ILaterTalkSequenceMethods for __T

Available on crate feature app-latertalksequence only.