Skip to main content

ISkipIndicatorMethods

Trait ISkipIndicatorMethods 

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

Source

fn awake(self)

Awake() overload

Source

fn update(self)

Update() overload

Source

fn show_skip_impl(self)

ShowSkipImpl() overload

Source

fn show_auto_impl(self)

ShowAutoImpl() overload

Source

fn show_error_impl(self)

ShowErrorImpl() overload

Source

fn hide_impl(self)

HideImpl() overload

Source

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

Source

fn is_opening(self) -> bool

IsOpening() overload

Source

fn is_closing(self) -> bool

IsClosing() overload

Source

fn is_closed(self) -> bool

IsClosed() overload

Source

fn get_bool(self, name: impl Into<Il2CppString>) -> bool

GetBool(::unity::Il2CppString) 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: ISkipIndicator> ISkipIndicatorMethods for __T

Available on crate feature app-skipindicator only.