summaryrefslogtreecommitdiffstats
path: root/src/repository.rs
blob: 57f2d636d7829877636854b80222d6baaa0755aa (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
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//

use std::fmt::Debug;

use crate::node;
use crate::id;

use futures::future::Future;

///
pub trait Repository: Debug {
    type Id: id::Id;
    type Error: Debug;
    type Node: node::Node<Id = Self::Id, Error = Self::Error>;

    type Get: Future<Item = Self::Node, Error = Self::Error>;

    /// It should be trivial to get the Id of a Node.
    fn get<ID>(id: ID) -> Result<Self::Get, Self::Error>
        where ID: id::Id;
}