pub type Result<T> = Result<T, ZervError>;
Result type alias for zerv operations
pub enum Result<T> { Ok(T), Err(ZervError), }
Contains the success value
Contains the error value