1use crate::registry::service_instance::ServiceInstance; 2use std::sync::Arc; 3 4/// #### ServicePool 5#[allow(dead_code)] 6pub struct ServicePool { 7 /// services in the pool 8 _services: Vec<Arc<dyn ServiceInstance>>, 9}