Skip to main content

miden_crypto/merkle/
node.rs

1use super::Word;
2
3/// Representation of a node with two children used for iterating over containers.
4#[derive(Debug, Clone, PartialEq, Eq)]
5#[cfg_attr(test, derive(PartialOrd, Ord))]
6pub struct InnerNodeInfo {
7    pub value: Word,
8    pub left: Word,
9    pub right: Word,
10}