pub trait HasReplyPacing {
// Required methods
fn reply_min_interval_secs(&self) -> u64;
fn reply_queue_depth_max(&self) -> u16;
}Expand description
Per-channel reply-pacing accessor. Implemented by every *Config
struct that participates in outbound pacing so validation and
wrapper construction can walk all of them through a single
abstraction rather than nine duplicated method calls.