pub trait IAnimationOutputWeightProcessor: IObject {
// Provided methods
fn m_output(self) -> AnimationPlayableOutput { ... }
fn set_m_output(self, value: AnimationPlayableOutput) { ... }
fn m_mixers(self) -> List_1<AnimationOutputWeightProcessor_WeightInfo> { ... }
fn set_m_mixers(
self,
value: List_1<AnimationOutputWeightProcessor_WeightInfo>,
) { ... }
}Provided Methods§
fn m_output(self) -> AnimationPlayableOutput
fn set_m_output(self, value: AnimationPlayableOutput)
fn m_mixers(self) -> List_1<AnimationOutputWeightProcessor_WeightInfo>
fn set_m_mixers(self, value: List_1<AnimationOutputWeightProcessor_WeightInfo>)
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.