fix: also add Eq to savage2::Response

This commit is contained in:
CosminPerRam 2023-12-11 03:47:31 +02:00
parent 486abbd9f7
commit 21205fc3cb

View file

@ -4,7 +4,7 @@ use crate::protocols::GenericResponse;
use serde::{Deserialize, Serialize};
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Response {
pub name: String,
pub players_online: u8,