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