rusql-alchemy 0.3.0-rc

Rust Alchemy is Django ORM like lib for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The `db` module provides functionality for interacting with the database.
//! 
//! This module contains submodules and traits that define the structure and behavior
//! of database models, as well as functions for performing common database operations.

/// The `models` module defines the traits and structures for database models.
/// 
/// This module includes the `Model` trait, which provides a common interface for
/// database models, and various implementations of this trait for different
/// entities in the application.
pub mod models;