jsonapi_core 1.0.0-rc.1

A typed JSON:API v1.1 serialization library for Rust
Documentation
1
2
3
4
5
6
7
8
//! JSON:API query strings: build them client-side with [`QueryBuilder`] and
//! parse them server-side with [`Query`].

mod builder;
mod parse;

pub use builder::QueryBuilder;
pub use parse::{Query, SortField};