From 3177f9967deb0c0ff0ee913a84a2d8ca64fc9285 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 19 Mar 2023 10:16:27 +0000 Subject: [PATCH] Add a comment aronud IMAP loop task handle --- src/scheduler.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/scheduler.rs b/src/scheduler.rs index e1638fd09..41f005434 100644 --- a/src/scheduler.rs +++ b/src/scheduler.rs @@ -229,6 +229,8 @@ impl<'a> Drop for IoPausedGuard<'a> { struct SchedBox { meaning: FolderMeaning, conn_state: ImapConnectionState, + + /// IMAP loop task handle. handle: task::JoinHandle<()>, }