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