From 2f5d74dbf4830181ad2413405ea2d23a62ff8276 Mon Sep 17 00:00:00 2001 From: Dmitry Bogatov Date: Fri, 20 Sep 2019 14:48:58 +0000 Subject: [PATCH] Remove unused constants from src/imap.rs --- src/imap.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/imap.rs b/src/imap.rs index 75a8019fb..4297489d6 100644 --- a/src/imap.rs +++ b/src/imap.rs @@ -27,11 +27,6 @@ pub enum ImapResult { Success, } -pub const DC_SUCCESS: usize = 3; -pub const DC_ALREADY_DONE: usize = 2; -pub const DC_RETRY_LATER: usize = 1; -pub const DC_FAILED: usize = 0; - const PREFETCH_FLAGS: &str = "(UID ENVELOPE)"; const BODY_FLAGS: &str = "(FLAGS BODY.PEEK[])"; const FETCH_FLAGS: &str = "(FLAGS)";