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§
Implementors§
impl HasTsInit for InstrumentAny
impl HasTsInit for Data
impl HasTsInit for Pool
impl HasTsInit for Bar
impl HasTsInit for InstrumentClose
impl HasTsInit for CustomData
impl HasTsInit for PythonCustomDataWrapper
Available on crate feature
python only.