rustyroad 1.8.1

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
12
13
//! Decoding query result values for display.
//!
//! Shared by the `query` and `db schema` commands, which both need to render
//! arbitrary rows without knowing their types ahead of time.

mod arrays;
mod ladder;
pub mod postgres;
pub mod rows;
mod scalars;

pub use postgres::{pg_display, pg_row};
pub use rows::DecodableRow;