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