rorm-db 0.7.0

The inner database abstraction layer from rorm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod database;
pub(crate) mod executor;
pub(crate) mod row;
pub(crate) mod transaction;

pub(crate) fn no_sqlx() -> ! {
    panic!(
        r#"
        Your binary was compiled without specifiying a runtime and tls implementation.
        
        One of async-std-native-tls, async-std-rustls, tokio-native-tls, tokio-rustls, 
        actix-native-tls, actix-rustls is required.
        "#
    );
}

#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub(crate) enum NotInstantiable {}