json_api/view/
mod.rs

1//! Low-level utilies for generically rendering a document.
2//!
3//! The public API in this module is not the most ergonomic way to create a document from
4//! a given type. The API in this module is exposed to provide way for library authors to
5//! add custom rendering logic for types type they wish to implement in their crate. If
6//! your looking for a simple way to render data as a document, check out the [functions
7//! exported from the crate root].
8//!
9//! [functions exported from the crate root]: ../index.html#functions
10
11mod context;
12mod render;
13
14pub use self::context::Context;
15pub use self::render::Render;