Skip to content

Commit

Permalink
Merge pull request #222 from H1rono/event-kind-derive
Browse files Browse the repository at this point in the history
✨ `EventKind`に`derive(Hash)`を追加
  • Loading branch information
H1rono authored Oct 9, 2024
2 parents a0cb68f + 5fb4bf7 commit 50a8d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ all_events! {event_converts}
/// # }
/// ```
#[must_use]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[non_exhaustive]
pub enum EventKind {
/// ボットの接続確認
Expand Down

0 comments on commit 50a8d14

Please sign in to comment.