remove unneeded PartialEq derive
This commit is contained in:
parent
375c97c95d
commit
663797e55b
@ -15,7 +15,7 @@ pub struct ItemId(u32);
|
|||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
pub struct BankName(String);
|
pub struct BankName(String);
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq)]
|
#[derive(Clone, Debug)]
|
||||||
pub enum ItemLocation {
|
pub enum ItemLocation {
|
||||||
Inventory {
|
Inventory {
|
||||||
character_id: CharacterEntityId,
|
character_id: CharacterEntityId,
|
||||||
@ -96,13 +96,13 @@ impl ItemDetail {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq)]
|
#[derive(Clone, Debug)]
|
||||||
pub struct NewItemEntity {
|
pub struct NewItemEntity {
|
||||||
pub location: ItemLocation,
|
pub location: ItemLocation,
|
||||||
pub item: ItemDetail,
|
pub item: ItemDetail,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq)]
|
#[derive(Clone, Debug)]
|
||||||
pub struct ItemEntity {
|
pub struct ItemEntity {
|
||||||
pub id: ItemEntityId,
|
pub id: ItemEntityId,
|
||||||
pub location: ItemLocation,
|
pub location: ItemLocation,
|
||||||
|
@ -14,8 +14,8 @@ use crate::entity::item::mag::Mag;
|
|||||||
use crate::entity::item::Meseta;
|
use crate::entity::item::Meseta;
|
||||||
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq)]
|
#[derive(Debug)]
|
||||||
pub enum ItemInstance {
|
enum ItemInstance {
|
||||||
Individual(ItemEntity),
|
Individual(ItemEntity),
|
||||||
Stacked(Vec<ItemEntity>),
|
Stacked(Vec<ItemEntity>),
|
||||||
Meseta(Meseta),
|
Meseta(Meseta),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user