pub trait MemoryEstimator {
// Required method
fn estimated_size(&self) -> usize;
}Expand description
Trait for estimating memory usage
Required Methods§
fn estimated_size(&self) -> usize
Implementors§
impl MemoryEstimator for TelemetryData
impl MemoryEstimator for LogData
Available on crate feature
structured-logging only.