1 2 3 4 5 6 7 8 9 10 11 12
use std::sync::Arc; #[derive(Debug)] pub struct Pool {} impl Pool { pub fn global() -> Arc<Self> { Arc::new(Self {}) } } pub struct PoolConfig {}