use brk_traversable::Traversable; use brk_types::{DifficultyEpoch, StoredF32, StoredU32}; use crate::internal::{ComputedBlockLast, ComputedDateLast}; /// Difficulty epoch metrics and countdown #[derive(Clone, Traversable)] pub struct Vecs { pub epoch: ComputedDateLast, pub blocks_before_next_difficulty_adjustment: ComputedBlockLast, pub days_before_next_difficulty_adjustment: ComputedBlockLast, }