pub type JmtValue = Option<Vec<u8>>;
The “value” half of a key/value pair from the JMT
pub enum JmtValue { None, Some(Vec<u8>), }
No value.
Some value of type T.
T