feat(eol_action): add clone derive to eolaction enum

- add clone derive to eolaction enum for easier usage and manipulation
This commit is contained in:
Jeremiah Russell
2025-10-13 17:02:02 +01:00
committed by Jeremiah Russell
parent c42f19d19a
commit 5a1f834a4f

View File

@@ -3,7 +3,7 @@ use std::fmt;
/// End of life action /// End of life action
/// - Trash - move the message to the trash to be automatically deleted by Google /// - Trash - move the message to the trash to be automatically deleted by Google
/// - Delete - delete the message immediately without allowing rescue from trash /// - Delete - delete the message immediately without allowing rescue from trash
#[derive(Debug, Default)] #[derive(Debug, Default, Clone)]
pub enum EolAction { pub enum EolAction {
#[default] #[default]
/// Move the message to the trash /// Move the message to the trash