pub trait IEvasionSpeedMethods: IEvasionSpeed {
// Provided methods
fn get_speed(self) -> f32 { ... }
fn ctor(self, curve: impl Into<AnimationCurve>) { ... }
fn dispose(self) { ... }
fn start(self) { ... }
fn update(self) { ... }
}Provided Methods§
Sourcefn ctor(self, curve: impl Into<AnimationCurve>)
fn ctor(self, curve: impl Into<AnimationCurve>)
.ctor(crate::unity_engine::animationcurve::AnimationCurve) 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: IEvasionSpeed> IEvasionSpeedMethods for __T
Available on crate feature
combat-evasionspeed only.