jsonapi_core 0.2.1

A typed JSON:API v1.1 serialization library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Output case convention configuration.
//!
//! [`CaseConvention`] defines the target casing for attribute and relationship
//! member names during serialization (camelCase, snake_case, kebab-case,
//! PascalCase, or pass-through). [`CaseConfig`] bundles the convention and is
//! used with `#[jsonapi(case = "...")]` on derive structs.

mod config;

pub use config::{CaseConfig, CaseConvention};