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