mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-07-08 11:38:05 +00:00
18 lines
203 B
Go
18 lines
203 B
Go
package bolt
|
|
|
|
type bucketid uint32
|
|
|
|
type Bucket struct {
|
|
*bucket
|
|
name string
|
|
}
|
|
|
|
type bucket struct {
|
|
id bucketid
|
|
flags uint32
|
|
root pgid
|
|
branches pgid
|
|
leafs pgid
|
|
entries uint64
|
|
}
|