diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-30 13:36:21 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-30 13:36:39 +0200 |
commit | 0f0a8d415e45df178778260d3be1b83ab2785675 (patch) | |
tree | d92d0dea55a7dafcbf85377163dfcbb889008a10 /src/imap/command/examined.rs | |
parent | 69428eaf257db396ae72007aa78d40406c29407c (diff) | |
download | aerogramme-0f0a8d415e45df178778260d3be1b83ab2785675.tar.gz aerogramme-0f0a8d415e45df178778260d3be1b83ab2785675.zip |
Implement RFC822.TEXT
Diffstat (limited to 'src/imap/command/examined.rs')
-rw-r--r-- | src/imap/command/examined.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/imap/command/examined.rs b/src/imap/command/examined.rs index d459cf0..aad7874 100644 --- a/src/imap/command/examined.rs +++ b/src/imap/command/examined.rs @@ -48,9 +48,7 @@ pub async fn dispatch<'a>(ctx: ExaminedContext<'a>) -> Result<(Response, flow::T // --- PRIVATE --- impl<'a> ExaminedContext<'a> { - async fn close( - self, - ) -> Result<(Response, flow::Transition)> { + async fn close(self) -> Result<(Response, flow::Transition)> { Ok((Response::ok("CLOSE completed")?, flow::Transition::Unselect)) } |