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