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/paper.rs | |
| parent | fd0b89a1d8e4f811fcf3517d321a327a0cf72edf (diff) | |
Add lots of Eq impls
Diffstat (limited to 'src/paper.rs')
| -rw-r--r-- | src/paper.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/paper.rs b/src/paper.rs index 8dfc071c..03c48f16 100644 --- a/src/paper.rs +++ b/src/paper.rs @@ -8,9 +8,9 @@ pub struct Paper { /// The broad class this paper belongs to. pub class: PaperClass, /// The width of the paper in millimeters. - pub width: f64, + width: f64, /// The height of the paper in millimeters. - pub height: f64, + height: f64, } impl Paper { |
