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