From 464c59e6c1027327cb15dd6c2a3f032809b8d42b Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Mon, 18 May 2020 14:10:28 -0400 Subject: [PATCH] Expunge holds a Seq --- src/types/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/mod.rs b/src/types/mod.rs index 3facf7c..4a789e5 100644 --- a/src/types/mod.rs +++ b/src/types/mod.rs @@ -261,7 +261,7 @@ pub enum UnsolicitedResponse { /// "higher to lower server" will send successive untagged `EXPUNGE` responses for message /// sequence numbers 9, 8, 7, 6, and 5. // TODO: the spec doesn't seem to say anything about when these may be received as unsolicited? - Expunge(u32), + Expunge(Seq), } /// This type wraps an input stream and a type that was constructed by parsing that input stream,