Skip to content

Commit

Permalink
added debug and clone to stats object
Browse files Browse the repository at this point in the history
  • Loading branch information
ryankurte committed Jul 7, 2019
1 parent 42dd8a1 commit 83fdfc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use serde::{Serialize, Deserialize};
///
/// See: https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Welford's_Online_algorithm for the algorithm
#[derive(Serialize, Deserialize)]
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Stats<T: Float + Zero + One + AddAssign + FromPrimitive + PartialEq + Debug> {
/// Minimum value
pub min: T,
Expand Down

0 comments on commit 83fdfc6

Please # to comment.