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
use crate::row::{Decode, RowIndex};
use crate::{Error, Row};

use super::{no_sqlx, NotInstantiable};

pub(crate) type Impl = NotInstantiable;

/// Implementation of [Row::get]
pub(crate) fn get<'r, T, I>(_row: &'r Row, _index: I) -> Result<T, Error>
where
    T: Decode<'r>,
    I: RowIndex,
{
    no_sqlx();
}