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