pub type RadixResult<T> = Result<T, RadixErr>;
enum RadixResult<T> { Ok(T), Err(RadixErr), }
Contains the success value
Contains the error value