mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 14:49:58 -07:00
11 lines
234 B
Rust
11 lines
234 B
Rust
use brk_traversable::Traversable;
|
|
use brk_types::StoredU64;
|
|
use vecdb::{Rw, StorageMode};
|
|
|
|
use crate::internal::PerBlockFull;
|
|
|
|
#[derive(Traversable)]
|
|
pub struct Vecs<M: StorageMode = Rw> {
|
|
pub total: PerBlockFull<StoredU64, M>,
|
|
}
|