summaryrefslogtreecommitdiffstats
path: root/lib/domain/libimagmail/src/mailtree.rs
blob: 84d1784d7cf6fae05d90cafe32d279e52b9f810f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2020 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//

use std::path::PathBuf;

use failure::Fallible as Result;
use failure::ResultExt;
use indextree::Arena;
use indextree::NodeId;
use indextree::Node;
use itertools::Itertools;

use libimagstore::storeid::StoreId;

use crate::store::MailStoreWithConnection;
use crate::mail::Mail;
use crate::mail::LoadedMail;


#[derive(Debug)]
pub struct Mailtree {
}

impl Mailtree {
    pub(crate) fn fill_from<'a>(store: &'a MailStoreWithConnection<'a>, root: LoadedMail)
        -> Result<Self>
    {
    }

    pub fn traverse(&self) -> Traverse {
        unimplemented!()
    }
}