Skip to main content

IRelayAppearanceSequenceMethods

Trait IRelayAppearanceSequenceMethods 

Source
pub trait IRelayAppearanceSequenceMethods: IRelayAppearanceSequence {
    // Provided methods
    fn ctor(self) { ... }
    fn ctor_2(
        self,
        appearance_indexes: impl Into<Array<i32>>,
        leaving_indexes: impl Into<Array<i32>>,
    ) { ... }
    fn leaving_begin(self) { ... }
    fn leaving(self) { ... }
    fn leaving_next(self) { ... }
    fn appearance_begin(self) { ... }
    fn appearance(self) { ... }
    fn appearance_next(self) { ... }
    fn focus_unit(self) { ... }
    fn get_leaving_unit(self, index: impl Into<i32>) -> Unit { ... }
    fn get_appearance_unit(self, index: impl Into<i32>) -> Unit { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn ctor_2( self, appearance_indexes: impl Into<Array<i32>>, leaving_indexes: impl Into<Array<i32>>, )

.ctor(::unity::Array<i32>, ::unity::Array<i32>) overload

Source

fn leaving_begin(self)

LeavingBegin() overload

Source

fn leaving(self)

Leaving() overload

Source

fn leaving_next(self)

LeavingNext() overload

Source

fn appearance_begin(self)

AppearanceBegin() overload

Source

fn appearance(self)

Appearance() overload

Source

fn appearance_next(self)

AppearanceNext() overload

Source

fn focus_unit(self)

FocusUnit() overload

Source

fn get_leaving_unit(self, index: impl Into<i32>) -> Unit

GetLeavingUnit(i32) overload

Source

fn get_appearance_unit(self, index: impl Into<i32>) -> Unit

GetAppearanceUnit(i32) 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: IRelayAppearanceSequence> IRelayAppearanceSequenceMethods for __T

Available on crate feature app-relayappearancesequence only.