Skip to content

Commit 81fdb30

Browse files
committed
Add missing Debug impl for *_ENCODE_SET in define_encode_set macro
1 parent 2f0f2f6 commit 81fdb30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/percent_encoding.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub trait EncodeSet: Clone {
5858
macro_rules! define_encode_set {
5959
($(#[$attr: meta])* pub $name: ident = [$base_set: expr] | {$($ch: pat),*}) => {
6060
$(#[$attr])*
61-
#[derive(Copy, Clone)]
61+
#[derive(Copy, Clone, Debug)]
6262
#[allow(non_camel_case_types)]
6363
pub struct $name;
6464

0 commit comments

Comments
 (0)