This commit is contained in:
Simon Gardling 2022-05-22 19:26:59 -04:00
parent 3967c8c98c
commit 9abc2c6401
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ pub struct TextData {
pub welcome: egui::RichText, pub welcome: egui::RichText,
} }
#[derive(PartialEq, serde::Serialize, serde::Deserialize)] #[derive(PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub struct TextDataRaw { pub struct TextDataRaw {
pub help_expr: String, pub help_expr: String,
pub help_vars: String, pub help_vars: String,

View File

@ -18,7 +18,7 @@ use std::{
use unzip_n::unzip_n; use unzip_n::unzip_n;
/// Represents the possible variations of Riemann Sums /// Represents the possible variations of Riemann Sums
#[derive(PartialEq, Debug, Copy, Clone)] #[derive(PartialEq, Eq, Debug, Copy, Clone)]
pub enum Riemann { pub enum Riemann {
Left, Left,
Middle, Middle,