aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/flex.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-10-14 00:03:57 +0200
committerSimon Sapin <simon.sapin@exyr.org>2017-10-14 00:03:57 +0200
commitb505c9e94817847e19f22854b2ee4258f66f18d2 (patch)
treefad6d01d0f273b36823f70bda152310fa12f7a28 /components/layout/flex.rs
parent4c5d6fd8345f301be4aafe2dba71cdf2de0ab01e (diff)
downloadservo-b505c9e94817847e19f22854b2ee4258f66f18d2.tar.gz
servo-b505c9e94817847e19f22854b2ee4258f66f18d2.zip
Introduce an unsafe HasBaseFlow trait for base()/base_mut() casts.
Diffstat (limited to 'components/layout/flex.rs')
-rw-r--r--components/layout/flex.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/components/layout/flex.rs b/components/layout/flex.rs
index 063add9e1d5..6d969ef8643 100644
--- a/components/layout/flex.rs
+++ b/components/layout/flex.rs
@@ -328,8 +328,12 @@ impl FlexLine {
}
}
+#[allow(unsafe_code)]
+unsafe impl ::flow::HasBaseFlow for FlexFlow {}
+
/// A block with the CSS `display` property equal to `flex`.
#[derive(Debug, Serialize)]
+#[repr(C)]
pub struct FlexFlow {
/// Data common to all block flows.
block_flow: BlockFlow,