diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-07-08 23:16:02 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-07-08 23:16:02 +0200 |
| commit | 02b586cc36fad58a622ecb439e1cf3a76a347207 (patch) | |
| tree | 11ec37daa234e19e9eb30e0370795e77e4ef418b /src/layout/fixed.rs | |
| parent | fd0b89a1d8e4f811fcf3517d321a327a0cf72edf (diff) | |
Add lots of Eq impls
Diffstat (limited to 'src/layout/fixed.rs')
| -rw-r--r-- | src/layout/fixed.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/fixed.rs b/src/layout/fixed.rs index c1d1ac5e..dfcd4038 100644 --- a/src/layout/fixed.rs +++ b/src/layout/fixed.rs @@ -1,7 +1,7 @@ use super::*; /// A node that can fix its child's width and height. -#[derive(Debug, Clone, PartialEq)] +#[derive(Debug, Clone, Eq, PartialEq)] #[cfg_attr(feature = "layout-cache", derive(Hash))] pub struct FixedNode { /// The fixed width, if any. |
