diff options
Diffstat (limited to 'components/layout/data.rs')
-rw-r--r-- | components/layout/data.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/data.rs b/components/layout/data.rs index 20ff5ef2b71..ef2195a9f31 100644 --- a/components/layout/data.rs +++ b/components/layout/data.rs @@ -60,10 +60,10 @@ impl LayoutData { } bitflags! { - pub struct LayoutDataFlags: u8 { + pub flags LayoutDataFlags: u8 { #[doc = "Whether a flow has been newly constructed."] - const HAS_NEWLY_CONSTRUCTED_FLOW = 0x01; + const HAS_NEWLY_CONSTRUCTED_FLOW = 0x01, #[doc = "Whether this node has been traversed by layout."] - const HAS_BEEN_TRAVERSED = 0x02; + const HAS_BEEN_TRAVERSED = 0x02, } } |