Files
miden-crypto/src/merkle/node.rs
2023-04-04 22:11:21 +02:00

10 lines
231 B
Rust

use super::Word;
/// Representation of a node with two children used for iterating over containers.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct InnerNodeInfo {
pub value: Word,
pub left: Word,
pub right: Word,
}