Remove a couple of unused Encodable and Decodable derives

This commit is contained in:
bjorn3 2021-06-03 11:16:05 +02:00
parent e40d5e83dc
commit fc2abe6952
2 changed files with 3 additions and 3 deletions

View file

@ -211,7 +211,7 @@ impl ToJson for PanicStrategy {
}
}
#[derive(Clone, Copy, Debug, PartialEq, Hash, Encodable, Decodable)]
#[derive(Clone, Copy, Debug, PartialEq, Hash)]
pub enum RelroLevel {
Full,
Partial,
@ -255,7 +255,7 @@ impl ToJson for RelroLevel {
}
}
#[derive(Clone, Copy, Debug, PartialEq, Hash, Encodable, Decodable)]
#[derive(Clone, Copy, Debug, PartialEq, Hash)]
pub enum MergeFunctions {
Disabled,
Trampolines,