pub trait Timestamp:
PartialOrd
+ Ord
+ Clone
+ Debug
+ 'static {
const MAX: Self;
const MIN: Self;
// Required method
fn merge(&self, other: &Self) -> Self;
}Expand description
Trait implemented by all types usable as timestamps in JetStream
Required Associated Constants§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".