Skip to main content

reifydb_core/value/column/pool/
stats.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4/// Statistics about pool usage
5#[derive(Debug, Clone, Default)]
6pub struct PoolStats {
7	pub available: usize,
8	pub total_acquired: usize,
9	pub total_released: usize,
10}