pub type ServerResult = Result<Server, Error>;
Result of starting the Server.
enum ServerResult { Ok(Server), Err(Error), }
Contains the success value
Contains the error value