summaryrefslogtreecommitdiffstats
path: root/vendor/gix-config-value/src/color.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-config-value/src/color.rs')
-rw-r--r--vendor/gix-config-value/src/color.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/gix-config-value/src/color.rs b/vendor/gix-config-value/src/color.rs
index 74e0dd4ac..606eef079 100644
--- a/vendor/gix-config-value/src/color.rs
+++ b/vendor/gix-config-value/src/color.rs
@@ -235,7 +235,7 @@ bitflags::bitflags! {
/// `gix-config` supports modifiers and their negators. The negating color
/// attributes are equivalent to having a `no` or `no-` prefix to the normal
/// variant.
- #[derive(Default)]
+ #[derive(Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
pub struct Attribute: u32 {
const BOLD = 1 << 1;
const DIM = 1 << 2;