pub trait TimelinesFunc {
// Required methods
fn seal(&mut self);
fn max_total_secs(&self) -> f64;
fn sync(&mut self);
fn forward(&mut self, secs: f64);
fn forward_to(&mut self, target_sec: f64);
}Expand description
Functions for timelines
Required Methods§
Sourcefn max_total_secs(&self) -> f64
fn max_total_secs(&self) -> f64
Get the max end_sec of the timelines
Sourcefn forward_to(&mut self, target_sec: f64)
fn forward_to(&mut self, target_sec: f64)
Forward all timelines to target_sec