diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-10 17:07:07 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-10 17:07:07 +0100 |
commit | 9cec7803d28617f1bfd1ac1621c2eda9582201d4 (patch) | |
tree | 46734d3ae0029f4c725df53d383cf918ccb82a04 /src/mail/query.rs | |
parent | 96332c9bfe6a9f01e3fdb0b2b565ad669fb526b1 (diff) | |
download | aerogramme-9cec7803d28617f1bfd1ac1621c2eda9582201d4.tar.gz aerogramme-9cec7803d28617f1bfd1ac1621c2eda9582201d4.zip |
Implement HIGHESTMODSEQ for STATUS
Diffstat (limited to 'src/mail/query.rs')
-rw-r--r-- | src/mail/query.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mail/query.rs b/src/mail/query.rs index 0838800..a183c5a 100644 --- a/src/mail/query.rs +++ b/src/mail/query.rs @@ -125,13 +125,6 @@ impl QueryResult { } } - fn into_partial(self, metadata: MailMeta) -> Option<Self> { - match self { - Self::IndexResult { uuid } => Some(Self::PartialResult { uuid, metadata }), - _ => None, - } - } - fn into_full(self, content: Vec<u8>) -> Option<Self> { match self { Self::PartialResult { uuid, metadata } => Some(Self::FullResult { |