tree_index/
verification.rs

1/// Returned by `.verified_by()`.
2#[derive(Debug, PartialEq)]
3pub struct Verification {
4  /// Node that verifies the index.
5  pub node: u64,
6  /// The highest Node found.
7  pub top: u64,
8}