aboutsummaryrefslogtreecommitdiff
path: root/src/imap/command/selected.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2022-06-28 10:49:28 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2022-06-28 10:49:28 +0200
commit36bbc2138bceb0c80a306f8c225e340d6fbd5470 (patch)
tree9592daf96a58a61b16337968b662e85199e0e158 /src/imap/command/selected.rs
parent927b461f25e8202a33fadc1f823d4feed6282f60 (diff)
downloadaerogramme-36bbc2138bceb0c80a306f8c225e340d6fbd5470.tar.gz
aerogramme-36bbc2138bceb0c80a306f8c225e340d6fbd5470.zip
cargo fmt + implement noop
Diffstat (limited to 'src/imap/command/selected.rs')
-rw-r--r--src/imap/command/selected.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/imap/command/selected.rs b/src/imap/command/selected.rs
index e013eaa..cf0b71b 100644
--- a/src/imap/command/selected.rs
+++ b/src/imap/command/selected.rs
@@ -47,9 +47,6 @@ impl<'a> StateContext<'a> {
attributes: &MacroOrFetchAttributes,
uid: &bool,
) -> Result<(Response, flow::Transition)> {
- Ok((
- Response::bad("Not implemented")?,
- flow::Transition::No,
- ))
+ Ok((Response::bad("Not implemented")?, flow::Transition::No))
}
}