Fix derive partial eq without eq

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-06-09 05:20:31 +00:00
parent 67f4285504
commit b525031a25
2 changed files with 1 additions and 2 deletions

View file

@ -233,7 +233,7 @@ impl Arena {
}
// Note: perhaps use some better form of token rather than just room count
#[derive(Debug, PartialEq)]
#[derive(Debug, Eq, PartialEq)]
pub struct PagnationToken {
pub skip: UInt,
pub limit: UInt,