From dca473a08b1fbd8011e195cb79931dd76eb9d878 Mon Sep 17 00:00:00 2001 From: Justin Abrahms Date: Fri, 14 Jul 2023 17:26:43 -0700 Subject: [PATCH] I don't think we actually care about default values here. --- src/export/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/export/mod.rs b/src/export/mod.rs index c25a7da..99d31c9 100644 --- a/src/export/mod.rs +++ b/src/export/mod.rs @@ -12,7 +12,7 @@ use std::io::{Error, Write}; use crate::elements::{Datetime, Element}; -pub trait ExportHandler>: Default { +pub trait ExportHandler> { fn start(&mut self, writer: W, element: &Element) -> Result<(), E>; fn end(&mut self, writer: W, element: &Element) -> Result<(), E>; }