mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-05-26 01:10:55 +00:00
11 lines
173 B
Go
11 lines
173 B
Go
package bolt
|
|
|
|
type stat struct {
|
|
PageSize int
|
|
Depth int
|
|
BranchPageCount int
|
|
LeafPageCount int
|
|
OverflowPageCount int
|
|
EntryCount int
|
|
}
|