//! RLM processing statistics.
use ;
/// Statistics collected during a single RLM processing run.
///
/// Returned inside [`RlmResult`](super::RlmResult) and emitted on the
/// session bus as part of the
/// `RlmComplete` event.
///
/// # Examples
///
/// ```rust
/// use codetether_rlm::RlmStats;
///
/// let s = RlmStats::default();
/// assert_eq!(s.input_tokens, 0);
/// assert_eq!(s.iterations, 0);
/// ```