pub const DEFAULT_MAX_OUTBOUND_QUEUE: Option<usize>;Expand description
Default cap on the outbound envelope queue depth. Some(10_000)
drops the oldest envelope when the cap is hit (FIFO drop) and
emits EngineStep::OutboundDropped. None disables the cap.