From 3d7f76b8765be36a70fde87a544090b79eed8498 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 13 Oct 2025 17:02:14 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(gmail=5Fclient):=20add=20rule?= =?UTF-8?q?=20field=20to=20GmailClient=20struct=20=20=20-=20Add=20rule=20f?= =?UTF-8?q?ield=20to=20GmailClient=20struct=20to=20store=20EolAction.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gmail_client.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gmail_client.rs b/src/gmail_client.rs index 21cc57e..5465c7c 100644 --- a/src/gmail_client.rs +++ b/src/gmail_client.rs @@ -28,6 +28,7 @@ pub struct GmailClient { pub(crate) label_ids: Vec, pub(crate) query: String, pub(crate) messages: Vec, + pub(crate) rule: Option, } impl std::fmt::Debug for GmailClient { @@ -78,6 +79,7 @@ impl GmailClient { label_ids: Vec::new(), query: String::new(), messages: Vec::new(), + rule: None, }) }