diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-05 15:36:40 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-01-05 15:36:40 +0100 |
commit | 335750a29a83edba9bce2fb7e1452001e4962d1f (patch) | |
tree | bea1e1f767cbd662e7a7f9b674a7ebeae195cd0a /src/mail/snapshot.rs | |
parent | d3c156a087f3c767fc0d2376abd7c1d304161d47 (diff) | |
download | aerogramme-335750a29a83edba9bce2fb7e1452001e4962d1f.tar.gz aerogramme-335750a29a83edba9bce2fb7e1452001e4962d1f.zip |
MOVE command is optimized
Diffstat (limited to 'src/mail/snapshot.rs')
-rw-r--r-- | src/mail/snapshot.rs | 11 |
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 { +} |