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§
Sourcefn ctor(self, text: impl Into<TextMeshProUGUI>)
fn ctor(self, text: impl Into<TextMeshProUGUI>)
.ctor(crate::tm_pro::textmeshprougui::TextMeshProUGUI) overload
Sourcefn set_text(self, mid: impl Into<Il2CppString>, msec: impl Into<i32>)
fn set_text(self, mid: impl Into<Il2CppString>, msec: impl Into<i32>)
SetText(::unity::Il2CppString, i32) overload
Sourcefn clear_text(self)
fn clear_text(self)
ClearText() overload
Sourcefn switch_show(self)
fn switch_show(self)
SwitchShow() 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: IMoviePlayerBase_Caption> IMoviePlayerBase_CaptionMethods for __T
Available on crate feature
app-movieplayerbase only.