1 2 3 4 5 6 7 8 9 10
use brk_traversable::Traversable; use vecdb::{Rw, StorageMode}; use crate::internal::AmountPerBlock; #[derive(Traversable)] pub struct Vecs<M: StorageMode = Rw> { pub vaulted: AmountPerBlock<M>, pub active: AmountPerBlock<M>, }