pub trait RuntimeApiProbeState:
Clone
+ Send
+ Sync
+ 'static {
// Required methods
fn process_started_at_ms(&self) -> u128;
fn token_fingerprint(&self) -> &str;
fn service_version(&self) -> &'static str;
}Expand description
/internal/probe fields supplied by the sidecar host.
Required Methods§
fn process_started_at_ms(&self) -> u128
fn token_fingerprint(&self) -> &str
fn service_version(&self) -> &'static str
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".