rbdc-sqlite 4.6.1

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL
Documentation
1
2
3
4
5
6
7
8
use crate::SqliteValue;
use rbdc::Error;

pub trait Decode {
    fn decode(value: SqliteValue) -> Result<Self, Error>
    where
        Self: Sized;
}