1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// SPDX-License-Identifier: Apache-2.0 // Copyright (c) 2025 ReifyDB /// Statistics about pool usage #[derive(Debug, Clone)] pub struct PoolStats { pub available: usize, pub total_acquired: usize, pub total_released: usize, } impl Default for PoolStats { fn default() -> Self { Self { available: 0, total_acquired: 0, total_released: 0, } } }