unjson 0.0.1

Tools for destructuring JSON data.
1
2
3
4
use std::result;
use unjson::error::Error;

pub type Result<T> = result::Result<T, Error>;