pub trait HasTsInit {
// Required method
fn ts_init(&self) -> UnixNanos;
}Expand description
Marker trait for types that carry a creation timestamp.
ts_init is the moment (UNIX nanoseconds) when this value was first generated or
ingested by Nautilus. It can be used for sequencing, latency measurements,
or monitoring data-pipeline delays.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".