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