Skip to content

Commit

Permalink
Fix: remove duplicate derive
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementNerma authored Dec 6, 2023
1 parent f38c60b commit 990a7e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/history/item.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl From<HistorySessionId> for i64 {
/// This trait represents additional arbitrary context to be added to a history (optional, see [`HistoryItem`])
pub trait HistoryItemExtraInfo: Serialize + DeserializeOwned + Default + Send {}

#[derive(Clone, Copy, Default, Debug, PartialEq, Eq, Serialize, Deserialize)]
#[derive(Clone, Copy, Default, Debug, PartialEq, Eq)]
/// something that is serialized as null and deserialized by ignoring everything
pub struct IgnoreAllExtraInfo;

Expand Down

0 comments on commit 990a7e5

Please sign in to comment.