pub type ServerManagerResult = Result<(), ServerManagerError>;
pub enum ServerManagerResult { Ok(()), Err(Box<dyn Error>), }
Contains the success value
Contains the error value