Skip to content

Commit

Permalink
Merge pull request #432 from hammsvietro/termtype-derive-eq
Browse files Browse the repository at this point in the history
Make TermType derive Eq and PartialEq
  • Loading branch information
evnu authored Feb 11, 2022
2 parents 08088db + cb6407c commit c5800b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rustler/src/dynamic.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::wrapper::check;
use crate::Term;

#[derive(Debug)]
#[derive(Debug, Eq, PartialEq)]
pub enum TermType {
Atom,
Binary,
Expand Down

0 comments on commit c5800b5

Please sign in to comment.