diff options
author | Alex Auvolat <alex@adnab.me> | 2022-07-12 15:31:29 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-07-12 15:31:29 +0200 |
commit | 5d6e4f73322b26038e76e6f915c6c79c5f03566e (patch) | |
tree | fe052de771cb5fb6f28cbcba03c2c63993063c70 /src/imap/command/examined.rs | |
parent | 7b888ed8cfecc30468c4a33e1f0a3e4bbced5df4 (diff) | |
download | aerogramme-5d6e4f73322b26038e76e6f915c6c79c5f03566e.tar.gz aerogramme-5d6e4f73322b26038e76e6f915c6c79c5f03566e.zip |
cleanup
Diffstat (limited to 'src/imap/command/examined.rs')
-rw-r--r-- | src/imap/command/examined.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imap/command/examined.rs b/src/imap/command/examined.rs index 91ad950..9dba680 100644 --- a/src/imap/command/examined.rs +++ b/src/imap/command/examined.rs @@ -71,9 +71,9 @@ impl<'a> ExaminedContext<'a> { pub async fn search( self, - charset: &Option<Charset>, - criteria: &SearchKey, - uid: &bool, + _charset: &Option<Charset>, + _criteria: &SearchKey, + _uid: &bool, ) -> Result<(Response, flow::Transition)> { Ok((Response::bad("Not implemented")?, flow::Transition::None)) } |