From 5a1f834a4f7f4fe3cbdb7e7481a745e253c0df63 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 13 Oct 2025 17:02:02 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(eol=5Faction):=20add=20clone?= =?UTF-8?q?=20derive=20to=20eolaction=20enum?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add clone derive to eolaction enum for easier usage and manipulation --- src/eol_action.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eol_action.rs b/src/eol_action.rs index a971b41..6b38624 100644 --- a/src/eol_action.rs +++ b/src/eol_action.rs @@ -3,7 +3,7 @@ use std::fmt; /// End of life action /// - Trash - move the message to the trash to be automatically deleted by Google /// - Delete - delete the message immediately without allowing rescue from trash -#[derive(Debug, Default)] +#[derive(Debug, Default, Clone)] pub enum EolAction { #[default] /// Move the message to the trash