diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-06-11 11:30:18 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-06-11 11:30:18 +0200 |
| commit | 3330767c20e14a05176902a93dcefb08cb509173 (patch) | |
| tree | eb40b262d267df0e9f73bbbc4ec602183fd39dff /src/paper.rs | |
| parent | c28708aa196eaca247cdab6b5e8af9751b4f1dad (diff) | |
Remove props in favor of using state for everything
Diffstat (limited to 'src/paper.rs')
| -rw-r--r-- | src/paper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/paper.rs b/src/paper.rs index 58d87be1..8dfc071c 100644 --- a/src/paper.rs +++ b/src/paper.rs @@ -26,7 +26,7 @@ impl Paper { } /// Defines default margins for a class of related papers. -#[derive(Debug, Copy, Clone, Eq, PartialEq)] +#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)] pub enum PaperClass { Custom, Base, |
