aboutsummaryrefslogtreecommitdiff
path: root/src/mail/snapshot.rs
blob: 7256d50828fec60320ce0d55779ce3495e227520 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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 {
}