diff options
| author | EliseZeroTwo <mail@elise.moe> | 2022-01-22 13:51:12 +0100 |
|---|---|---|
| committer | Kyle Martin <krm504@nyu.edu> | 2022-01-24 23:53:20 -0500 |
| commit | 6d49c02eb3c1fbf61629b79f87ca7abf0700ccce (patch) | |
| tree | 8944d7e9fbed55140eec38b4470d0cbab5a24672 /rust/src/section.rs | |
| parent | f8949225ef1af7051e35f6f0a79581876f03f6c2 (diff) | |
chore: rust: add common useful derive macros to enums that are missing it
Diffstat (limited to 'rust/src/section.rs')
| -rw-r--r-- | rust/src/section.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/src/section.rs b/rust/src/section.rs index aae973f4..eb742e54 100644 --- a/rust/src/section.rs +++ b/rust/src/section.rs @@ -21,6 +21,7 @@ use crate::binaryview::BinaryView; use crate::rc::*; use crate::string::*; +#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)] pub enum Semantics { DefaultSection, ReadOnlyCode, |
