Documentation
persister
=========

ORM library for rust. 

The aim of this project is to create full orm for rust with pluggable dialects. For the start we implement just
postgres dialect.
This project should be inspired from sqlalchemy and django.


persister_model
---------------

Basic building block is model, which will be provided with decorator syntax extension for rust.
This decorator should inspect model, register to registry and provide implementation of basic 
static methods (new, objects, table).

Then we should provide macro query!(Model) which expands to something like query(Model::db_table()).
The api must be chainable and provide api methods to add functionality.