summaryrefslogtreecommitdiff
path: root/src/paper.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-07-08 23:16:02 +0200
committerLaurenz <laurmaedje@gmail.com>2021-07-08 23:16:02 +0200
commit02b586cc36fad58a622ecb439e1cf3a76a347207 (patch)
tree11ec37daa234e19e9eb30e0370795e77e4ef418b /src/paper.rs
parentfd0b89a1d8e4f811fcf3517d321a327a0cf72edf (diff)
Add lots of Eq impls
Diffstat (limited to 'src/paper.rs')
-rw-r--r--src/paper.rs4
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 {