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§
Sourcefn ctor_2(
self,
appearance_indexes: impl Into<Array<i32>>,
leaving_indexes: impl Into<Array<i32>>,
)
fn ctor_2( self, appearance_indexes: impl Into<Array<i32>>, leaving_indexes: impl Into<Array<i32>>, )
.ctor(::unity::Array<i32>, ::unity::Array<i32>) overload
Sourcefn leaving_begin(self)
fn leaving_begin(self)
LeavingBegin() overload
Sourcefn leaving_next(self)
fn leaving_next(self)
LeavingNext() overload
Sourcefn appearance_begin(self)
fn appearance_begin(self)
AppearanceBegin() overload
Sourcefn appearance(self)
fn appearance(self)
Appearance() overload
Sourcefn appearance_next(self)
fn appearance_next(self)
AppearanceNext() overload
Sourcefn focus_unit(self)
fn focus_unit(self)
FocusUnit() overload
Sourcefn get_leaving_unit(self, index: impl Into<i32>) -> Unit
fn get_leaving_unit(self, index: impl Into<i32>) -> Unit
GetLeavingUnit(i32) overload
Sourcefn get_appearance_unit(self, index: impl Into<i32>) -> Unit
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§
impl<__T: IRelayAppearanceSequence> IRelayAppearanceSequenceMethods for __T
Available on crate feature
app-relayappearancesequence only.