From c2fc1b49ba27ede27bf58da554d36bbd1a657c63 Mon Sep 17 00:00:00 2001 From: Taylor Cramer Date: Wed, 4 Sep 2019 11:58:23 -0700 Subject: [PATCH] Derive Copy/Clone/Eq/PartialEq for PrintFmt --- src/print.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/print.rs b/src/print.rs index aaf4b626..5e798bfa 100644 --- a/src/print.rs +++ b/src/print.rs @@ -20,6 +20,7 @@ pub struct BacktraceFmt<'a, 'b> { } /// The styles of printing that we can print +#[derive(Copy, Clone, Eq, PartialEq)] pub enum PrintFmt { /// Prints a terser backtrace which ideally only contains relevant information Short,