pikkr 0.14.0

JSON Parser which picks up values directly without performing tokenization in Rust
1
2
3
4
5
use super::error;
use std::result;

/// A specialized Result type for parsing a JSON record.
pub type Result<T> = result::Result<T, error::Error>;