summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authornickelc <constantin.nickel@gmail.com>2023-04-26 16:59:38 +0200
committerGitHub <noreply@github.com>2023-04-26 10:59:38 -0400
commit3e8d1bc9c4dad6499f4d9dd8bb6f0b966b33710e (patch)
tree646daea744f7426ad1eedc87cfc56f8644c266a0 /src
parent7d9bfd308a8bff537f3d49677e1b3b586b5a5fe6 (diff)
Update `bitflags` to 2.2.1 (#1361)
The `Clone`, `Copy`, `Debug` and `PartialEq` traits are no longer derived automatically by the macro.
Diffstat (limited to 'src')
-rw-r--r--src/parse_style.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse_style.rs b/src/parse_style.rs
index f6e6d251..30106ba3 100644
--- a/src/parse_style.rs
+++ b/src/parse_style.rs
@@ -66,6 +66,7 @@ impl Style {
}
bitflags! {
+ #[derive(Clone, Copy, Debug, PartialEq)]
struct DecorationAttributes: u8 {
const EMPTY = 0b00000000;
const BOX = 0b00000001;