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