diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-28 10:49:28 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-06-28 10:49:28 +0200 |
commit | 36bbc2138bceb0c80a306f8c225e340d6fbd5470 (patch) | |
tree | 9592daf96a58a61b16337968b662e85199e0e158 /src/imap/command/selected.rs | |
parent | 927b461f25e8202a33fadc1f823d4feed6282f60 (diff) | |
download | aerogramme-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.rs | 5 |
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)) } } |