pub trait LogStreamStatsSource:
Debug
+ Send
+ Sync {
// Required method
fn snapshot(&self) -> LogStreamStats;
}Expand description
Queried only by the monitor’s presentation thread, never by task execution.
Required Methods§
fn snapshot(&self) -> LogStreamStats
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".