pub type BuildResult = Result<(), Box<AnyError>>;
pub enum BuildResult { Ok(()), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value