rustyroad 1.8.0

Rusty Road is a framework written in Rust that is based on Ruby on Rails. It is designed to provide the familiar conventions and ease of use of Ruby on Rails, while also taking advantage of the performance and efficiency of Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Schema model used to build versioned views.
//!
//! Captures the subset needed to project a physical table into a versioned view:
//! the physical table name, and for each logical column the physical column
//! backing it plus whether it has been removed from this version.

mod column;
mod table;

pub use column::Column;
pub use table::{Schema, Table};