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
use crate::any::{
    AnyArgumentBuffer, AnyArguments, AnyColumn, AnyConnection, AnyQueryResult, AnyRow,
    AnyStatement, AnyTransactionManager, AnyTypeInfo, AnyValue, AnyValueRef,
};
use crate::database::{Database, HasArguments, HasStatement, HasStatementCache, HasValueRef};
#[derive(Debug)]
pub struct Any;
impl Database for Any {
    type Connection = AnyConnection;
    type TransactionManager = AnyTransactionManager;
    type Row = AnyRow;
    type QueryResult = AnyQueryResult;
    type Column = AnyColumn;
    type TypeInfo = AnyTypeInfo;
    type Value = AnyValue;
}
impl<'r> HasValueRef<'r> for Any {
    type Database = Any;
    type ValueRef = AnyValueRef<'r>;
}
impl<'q> HasStatement<'q> for Any {
    type Database = Any;
    type Statement = AnyStatement<'q>;
}
impl<'q> HasArguments<'q> for Any {
    type Database = Any;
    type Arguments = AnyArguments<'q>;
    type ArgumentBuffer = AnyArgumentBuffer<'q>;
}
impl HasStatementCache for Any {}