aboutsummaryrefslogtreecommitdiff
path: root/src/mail/snapshot.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-01-05 15:36:40 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-01-05 15:36:40 +0100
commit335750a29a83edba9bce2fb7e1452001e4962d1f (patch)
treebea1e1f767cbd662e7a7f9b674a7ebeae195cd0a /src/mail/snapshot.rs
parentd3c156a087f3c767fc0d2376abd7c1d304161d47 (diff)
downloadaerogramme-335750a29a83edba9bce2fb7e1452001e4962d1f.tar.gz
aerogramme-335750a29a83edba9bce2fb7e1452001e4962d1f.zip
MOVE command is optimized
Diffstat (limited to 'src/mail/snapshot.rs')
-rw-r--r--src/mail/snapshot.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mail/snapshot.rs b/src/mail/snapshot.rs
new file mode 100644
index 0000000..7256d50
--- /dev/null
+++ b/src/mail/snapshot.rs
@@ -0,0 +1,11 @@
+use std::sync::Arc;
+use super::mailbox::Mailbox;
+use super::uidindex::UidIndex;
+
+pub struct Snapshot {
+ pub mailbox: Arc<Mailbox>,
+ pub snapshot: UidIndex,
+}
+
+impl Snapshot {
+}