pub trait MotionTrack {
// Required methods
fn identity(&self) -> usize;
fn is_active(&self) -> bool;
fn advance(&self, now: Time) -> bool;
fn finish(&self);
fn cancel(&self);
}Required Methods§
fn identity(&self) -> usize
fn is_active(&self) -> bool
fn advance(&self, now: Time) -> bool
fn finish(&self)
fn cancel(&self)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".