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