Skip to content

Commit

Permalink
Add some missing Debug traits
Browse files Browse the repository at this point in the history
  • Loading branch information
hillu committed Nov 22, 2024
1 parent 8b82c43 commit dbc7220
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/const.rs.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use lazy_static::lazy_static;
use std::collections::HashMap;

#[derive(PartialEq,Eq,Clone,Copy)]
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub(crate) enum FieldType {
Encoded,
Numeric,
Expand Down Expand Up @@ -35,4 +35,4 @@ lazy_static! {
}
hm
};
}
}
2 changes: 1 addition & 1 deletion src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use serde::{ser::SerializeMap, Serialize, Serializer};
use crate::*;

/// Quotes types in [`Value`] strings
#[derive(PartialEq, Eq, Clone, Copy)]
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum Quote {
None,
Single,
Expand Down

0 comments on commit dbc7220

Please sign in to comment.