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