pub type VerRes = Result<usize, KeyError>;
Versatile result type used by tree entry operations.
pub enum VerRes { Ok(usize), Err(KeyError), }
Contains the success value
Contains the error value