pub trait IndexedMerkleTree { // Required methods fn get_index(&self) -> u64; fn is_newest(&self) -> bool; fn set_newest(&mut self, newest: bool); }