summaryrefslogtreecommitdiffstats
path: root/src/repository.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-04-04 13:18:23 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-04-04 13:18:35 +0200
commitfb364c1ff338e7a67d717b77d431937888d8c009 (patch)
tree0698dbd412322ec9d2c09cf599ef1fe863be9c0e /src/repository.rs
parent2d25173aeafe9357f7cbd5c1edf6225d9ccf1114 (diff)
Import rewrite from distrox repository
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/repository.rs')
-rw-r--r--src/repository.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/repository.rs b/src/repository.rs
deleted file mode 100644
index 245b2e4..0000000
--- a/src/repository.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// 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 + Sync + Send {
- type Id: id::Id;
- type Error: Debug;
- type Node: node::Node<Id = Self::Id, Error = Self::Error>;
-
- /// It should be trivial to get the Id of a Node.
- fn get(&self, id: Self::Id) -> Box<Future<Item = Self::Node, Error = Self::Error>>;
-}
-