jss-core 0.2.0

Json Simplified Schema Core Interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../Readme.md")]

pub use self::{
    errors::{Errors, JssError, JssErrorKind, Result},
    from::parse_json,
    schema::{JssKind, JssSchema, JssType, JssValue},
};
#[cfg(feature = "wasm")]
pub use json_value::JsonValue;

mod errors;
mod from;
mod into;
mod schema;