pub type SubtreeLookupResult = SubtreeLookupResult<Vec<u8>>;
Expand description
A result of looking up for a subtree.
Aliased Type§
enum SubtreeLookupResult {
Absent,
Unknown,
Found(HashTree<Vec<u8>>),
}
Variants§
Absent
The subtree at the provided path is guaranteed to be absent in the original state tree.
Unknown
This partial view does not include information about this path, and the original tree may or may note include a subtree at this path.
Found(HashTree<Vec<u8>>)
The subtree was found at the provided path.