usealloc::vec::Vec;usesuper::{super::Word,forest::Forest};/// Container for the update data of a [super::PartialMmr]
#[derive(Debug)]pubstructMmrDelta{/// The new version of the [super::Mmr]
pubforest: Forest,
/// Update data.
////// The data is packed as follows:
/// 1. All the elements needed to perform authentication path updates. These are the right
/// siblings required to perform tree merges on the [super::PartialMmr].
/// 2. The new peaks.
pubdata:Vec<Word>,
}