pub trait ISkipIndicatorMethods: ISkipIndicator {
// Provided methods
fn awake(self) { ... }
fn update(self) { ... }
fn show_skip_impl(self) { ... }
fn show_auto_impl(self) { ... }
fn show_error_impl(self) { ... }
fn hide_impl(self) { ... }
fn show(
self,
is_show_skip: impl Into<bool>,
is_show_auto: impl Into<bool>,
is_show_error: impl Into<bool>,
) { ... }
fn is_opening(self) -> bool { ... }
fn is_closing(self) -> bool { ... }
fn is_closed(self) -> bool { ... }
fn get_bool(self, name: impl Into<Il2CppString>) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn show_skip_impl(self)
fn show_skip_impl(self)
ShowSkipImpl() overload
Sourcefn show_auto_impl(self)
fn show_auto_impl(self)
ShowAutoImpl() overload
Sourcefn show_error_impl(self)
fn show_error_impl(self)
ShowErrorImpl() overload
Sourcefn show(
self,
is_show_skip: impl Into<bool>,
is_show_auto: impl Into<bool>,
is_show_error: impl Into<bool>,
)
fn show( self, is_show_skip: impl Into<bool>, is_show_auto: impl Into<bool>, is_show_error: impl Into<bool>, )
Show(bool, bool, bool) overload
Sourcefn is_opening(self) -> bool
fn is_opening(self) -> bool
IsOpening() overload
Sourcefn is_closing(self) -> bool
fn is_closing(self) -> bool
IsClosing() overload
Sourcefn get_bool(self, name: impl Into<Il2CppString>) -> bool
fn get_bool(self, name: impl Into<Il2CppString>) -> bool
GetBool(::unity::Il2CppString) 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: ISkipIndicator> ISkipIndicatorMethods for __T
Available on crate feature
app-skipindicator only.