pub trait Rewind: From<Time> {
// Required method
fn rewind(&self, slack: Self) -> Self;
}
Expand description
Extension trait for timestamp types that can be safely re-wound to an earlier time. This is required for automatically advancing traces according to their configured slack.
Required Methods§
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.