pub type MultiAtomicArc<ItemType, const BUFFER_SIZE: usize, const MAX_STREAMS: usize, const INSTRUMENTS: usize = {Instruments::LogsWithMetrics.into()}> = Multi<ItemType, ChannelMultiArcAtomic<ItemType, BUFFER_SIZE, MAX_STREAMS>, INSTRUMENTS, Arc<ItemType>>;
struct MultiAtomicArc<ItemType, const BUFFER_SIZE: usize, const MAX_STREAMS: usize, const INSTRUMENTS: usize = {Instruments::LogsWithMetrics.into()}> {
pub multi_name: String,
pub channel: Arc<Atomic<'static, ItemType, BUFFER_SIZE, MAX_STREAMS>>,
pub executor_infos: RwLock<IndexMap<String, ExecutorInfo>>,
}