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
use super::{object::Objects, package::Packages, *};
pub use local::LocalBackend;
pub use memory::MemoryBackend;
pub use remote::RemoteBackend;
mod local;
mod memory;
mod remote;
pub trait ReadBackend: Sized + std::fmt::Debug {
type Source;
fn open(source: Self::Source) -> StoreResult<Self>;
fn objects(&self) -> &Objects;
fn packages(&self) -> &Packages;
}
pub trait WriteBackend: Sized + std::fmt::Debug {
type Source;
fn init(source: Self::Source) -> StoreResult<Self>;
fn objects_mut(&mut self) -> &mut Objects;
fn packages_mut(&mut self) -> &mut Packages;
fn flush(self) -> StoreResult<()>;
}