File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ struct AttributeParseState {
22
22
}
23
23
24
24
/// Parsed attributes from a `#[wasm_bindgen(..)]`.
25
- #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq , Eq ) ) ]
25
+ #[ cfg_attr( feature = "extra-traits" , derive( Debug ) ) ]
26
26
pub struct BindgenAttrs {
27
27
/// List of parsed attributes
28
28
pub attrs : Vec < ( Cell < bool > , BindgenAttr ) > ,
@@ -229,7 +229,7 @@ impl Parse for BindgenAttrs {
229
229
macro_rules! gen_bindgen_attr {
230
230
( $( ( $method: ident, $( $variants: tt) * ) , ) * ) => {
231
231
/// The possible attributes in the `#[wasm_bindgen]`.
232
- #[ cfg_attr( feature = "extra-traits" , derive( Debug , PartialEq , Eq ) ) ]
232
+ #[ cfg_attr( feature = "extra-traits" , derive( Debug ) ) ]
233
233
pub enum BindgenAttr {
234
234
$( $( $variants) * , ) *
235
235
}
You can’t perform that action at this time.
0 commit comments