rorm 0.10.0

A asynchronous declarative ORM written in pure rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This module holds the CRUD interface.
//!
//! rorm's crud is entirely based on the builder pattern.
//! This means for every crud query ([INSERT](insert), [SELECT](query), [UPDATE](update), [DELETE](delete)) there exists a builder struct
//! whose methods allow you to set the various parameters.
//!
//! To begin a builder use their associated functions [`insert`], [`query`], [`update`] and [`delete`].
pub mod builder;
pub mod decoder;
pub mod delete;
pub mod insert;
pub mod query;
pub mod selector;
pub mod update;