aboutsummaryrefslogtreecommitdiff
path: root/src/term/cell.rs
diff options
context:
space:
mode:
authorJonathan Schleußer <paradoxspiral@riseup.net>2017-08-30 20:43:37 +0200
committerJoe Wilm <jwilm@users.noreply.github.com>2017-09-05 09:07:00 -0700
commita3d35ec1859802a2440d29ac24d87bf347a6144e (patch)
tree909c86e052cf52fcac86b241739508965e2dcf02 /src/term/cell.rs
parent967393a31c4b722266e9bc4e74b89d0a23a82dbb (diff)
downloadalacritty-a3d35ec1859802a2440d29ac24d87bf347a6144e.tar.gz
alacritty-a3d35ec1859802a2440d29ac24d87bf347a6144e.zip
Update most remaining deps
Diffstat (limited to 'src/term/cell.rs')
-rw-r--r--src/term/cell.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/term/cell.rs b/src/term/cell.rs
index d1c6877b..cc1848d3 100644
--- a/src/term/cell.rs
+++ b/src/term/cell.rs
@@ -17,16 +17,16 @@ use index::Column;
bitflags! {
#[derive(Serialize, Deserialize)]
- pub flags Flags: u32 {
- const INVERSE = 0b00000001,
- const BOLD = 0b00000010,
- const ITALIC = 0b00000100,
- const UNDERLINE = 0b00001000,
- const WRAPLINE = 0b00010000,
- const WIDE_CHAR = 0b00100000,
- const WIDE_CHAR_SPACER = 0b01000000,
- const DIM = 0b10000000,
- const DIM_BOLD = 0b10000010,
+ pub struct Flags: u32 {
+ const INVERSE = 0b00000001;
+ const BOLD = 0b00000010;
+ const ITALIC = 0b00000100;
+ const UNDERLINE = 0b00001000;
+ const WRAPLINE = 0b00010000;
+ const WIDE_CHAR = 0b00100000;
+ const WIDE_CHAR_SPACER = 0b01000000;
+ const DIM = 0b10000000;
+ const DIM_BOLD = 0b10000010;
}
}