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
51
52
53
54
55
#[cfg(doc)]
use crate::backend::Backend;
use std::{future::Future, pin::Pin};
pub type InitFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type ShutdownFuture<'a> = PinBoxFuture<'a>;
pub type HasTableFuture<'a, E> = PinBoxFuture<'a, Result<bool, E>>;
pub type CreateTableFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type DeleteTableFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type EnsureTableFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type GetAllFuture<'a, I, E> = PinBoxFuture<'a, Result<I, E>>;
pub type GetKeysFuture<'a, I, E> = PinBoxFuture<'a, Result<I, E>>;
pub type GetFuture<'a, D, E> = PinBoxFuture<'a, Result<Option<D>, E>>;
pub type HasFuture<'a, E> = PinBoxFuture<'a, Result<bool, E>>;
pub type CreateFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type EnsureFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type UpdateFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type ReplaceFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
pub type DeleteFuture<'a, E> = PinBoxFuture<'a, Result<(), E>>;
type PinBoxFuture<'a, Rt = ()> = Pin<Box<dyn Future<Output = Rt> + Send + 'a>>;