Skip to main content

IMoviePlayerBase_CaptionMethods

Trait IMoviePlayerBase_CaptionMethods 

Source
pub trait IMoviePlayerBase_CaptionMethods: IMoviePlayerBase_Caption {
    // Provided methods
    fn ctor(self, text: impl Into<TextMeshProUGUI>) { ... }
    fn finalize(self) { ... }
    fn reset(self) { ... }
    fn set_text(self, mid: impl Into<Il2CppString>, msec: impl Into<i32>) { ... }
    fn clear_text(self) { ... }
    fn is_show(self) -> bool { ... }
    fn show(self) { ... }
    fn hide(self) { ... }
    fn switch_show(self) { ... }
    fn tick(self) { ... }
}

Provided Methods§

Source

fn ctor(self, text: impl Into<TextMeshProUGUI>)

.ctor(crate::tm_pro::textmeshprougui::TextMeshProUGUI) overload

Source

fn finalize(self)

Finalize() overload

Source

fn reset(self)

Reset() overload

Source

fn set_text(self, mid: impl Into<Il2CppString>, msec: impl Into<i32>)

SetText(::unity::Il2CppString, i32) overload

Source

fn clear_text(self)

ClearText() overload

Source

fn is_show(self) -> bool

IsShow() overload

Source

fn show(self)

Show() overload

Source

fn hide(self)

Hide() overload

Source

fn switch_show(self)

SwitchShow() overload

Source

fn tick(self)

Tick() 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: IMoviePlayerBase_Caption> IMoviePlayerBase_CaptionMethods for __T

Available on crate feature app-movieplayerbase only.