reinhardt-web 0.1.0-rc.28

A full-stack API framework for Rust, inspired by Django and Django REST Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! REST API module.
//!
//! This module provides REST API features including serializers, parsers,
//! pagination, filters, throttling, versioning, metadata, and content negotiation.
//!
//! # Examples
//!
//! ```rust,no_run
//! use reinhardt::rest::serializers::Serializer;
//! use reinhardt::rest::pagination::PageNumberPagination;
//! use reinhardt::rest::filters::FilterBackend;
//! ```

#[cfg(feature = "rest")]
pub use reinhardt_rest::*;