2017-02-25 20:56:50 +00:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>JSON - </title>
|
|
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<base href="../">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="book.css">
|
|
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
|
|
|
|
|
|
|
|
<link rel="shortcut icon" href="favicon.png">
|
|
|
|
|
|
|
|
<!-- Font Awesome -->
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="highlight.css">
|
|
|
|
<link rel="stylesheet" href="tomorrow-night.css">
|
|
|
|
|
|
|
|
<!-- MathJax -->
|
|
|
|
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
|
|
|
|
|
|
|
|
<!-- Fetch JQuery from CDN but have a local fallback -->
|
|
|
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
|
|
<script>
|
|
|
|
if (typeof jQuery == 'undefined') {
|
|
|
|
document.write(unescape("%3Cscript src='jquery.js'%3E%3C/script%3E"));
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body class="light">
|
|
|
|
<!-- Set the theme before any content is loaded, prevents flash -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
var theme = localStorage.getItem('theme');
|
|
|
|
if (theme == null) { theme = 'light'; }
|
|
|
|
$('body').removeClass().addClass(theme);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- Hide / unhide sidebar before it is displayed -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
var sidebar = localStorage.getItem('sidebar');
|
|
|
|
if (sidebar === "hidden") { $("html").addClass("sidebar-hidden") }
|
|
|
|
else if (sidebar === "visible") { $("html").addClass("sidebar-visible") }
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div id="sidebar" class="sidebar">
|
2017-02-26 04:15:52 +00:00
|
|
|
<ul class="chapter"><li class="affix"><a href="pages/table_of_contents.html">Table of Contents</a></li><li class="affix"><a href="pages/error_handling_note.html">A Note About Error Handling</a></li><li><a href="pages/math.html"><strong>1.</strong> Math</a></li><li><ul class="section"><li><a href="pages/rand.html"><strong>1.1.</strong> rand</a></li></ul></li><li><a href="pages/algorithms.html"><strong>2.</strong> Algorithms</a></li><li><a href="pages/IO.html"><strong>3.</strong> IO</a></li><li><ul class="section"><li><a href="pages/file_io.html"><strong>3.1.</strong> File IO</a></li><li><a href="pages/cli_parsing.html"><strong>3.2.</strong> Command Line Parsing</a></li></ul></li><li><a href="pages/serialization.html"><strong>4.</strong> Serialization</a></li><li><ul class="section"><li><a href="pages/byteorder.html"><strong>4.1.</strong> Byteorder</a></li><li><a href="pages/json.html" class="active"><strong>4.2.</strong> JSON</a></li><li><a href="pages/toml.html"><strong>4.3.</strong> TOML</a></li></ul></li><li><a href="pages/networking.html"><strong>5.</strong> Networking</a></li><li class="affix"><a href="pages/contributing.html">Contributing</a></li></ul>
|
2017-02-25 20:56:50 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="page-wrapper" class="page-wrapper">
|
|
|
|
|
|
|
|
<div class="page">
|
|
|
|
<div id="menu-bar" class="menu-bar">
|
|
|
|
<div class="left-buttons">
|
|
|
|
<i id="sidebar-toggle" class="fa fa-bars"></i>
|
|
|
|
<i id="theme-toggle" class="fa fa-paint-brush"></i>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h1 class="menu-title"></h1>
|
|
|
|
|
|
|
|
<div class="right-buttons">
|
|
|
|
<i id="print-button" class="fa fa-print" title="Print this book"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="content" class="content">
|
|
|
|
<a class="header" href="#json" name="json"><h1>JSON</h1></a>
|
2017-02-25 21:10:40 +00:00
|
|
|
<p><a href="http://json.rs/doc/json"><img src="https://img.shields.io/crates/v/rustc-serialize.svg?label=json" alt="json-badge" /></a></p>
|
2017-02-25 20:56:50 +00:00
|
|
|
<a class="header" href="#json-implementation-in-rust" name="json-implementation-in-rust"><h2>JSON implementation in Rust:</h2></a>
|
|
|
|
<p>The example below shows two simple ways to embed JSON in Rust.
|
|
|
|
The first method parses block JSON as a block using the parse method from the json crate. It then unwraps the parsed JSON.
|
|
|
|
The second method instantiates an object as JSON using the object macro. Key value relationships are easily set using <code>=></code>.</p>
|
|
|
|
<p>After demonstrating two simple ways to write JSON, the <code>assert_eq!</code> macro ensures equivalence.</p>
|
|
|
|
<pre><code class="language-rust">#[macro_use]
|
|
|
|
extern crate json;
|
|
|
|
|
|
|
|
fn main(){
|
|
|
|
let parsed_data = json::parse(r#"
|
|
|
|
|
|
|
|
{
|
|
|
|
"userid": 103609,
|
|
|
|
"verified": true,
|
|
|
|
"access_privelages": [
|
|
|
|
"user",
|
|
|
|
"admin"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
"#).unwrap();
|
|
|
|
|
|
|
|
let instantiated_data = object!{
|
|
|
|
"userid" => 103609,
|
|
|
|
"verified" => true,
|
|
|
|
"access_privelages" => array![
|
|
|
|
"user",
|
|
|
|
"admin"
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(parsed_data, instantiated_data);
|
|
|
|
}
|
|
|
|
</code></pre>
|
|
|
|
<a class="header" href="#license" name="license"><h1>License</h1></a>
|
|
|
|
<p>MIT/Apache-2.0</p>
|
|
|
|
<!-- Links -->
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Mobile navigation buttons -->
|
|
|
|
|
2017-02-26 04:15:52 +00:00
|
|
|
<a href="pages/byteorder.html" class="mobile-nav-chapters previous">
|
2017-02-25 20:56:50 +00:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<a href="pages/toml.html" class="mobile-nav-chapters next">
|
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2017-02-26 04:15:52 +00:00
|
|
|
<a href="pages/byteorder.html" class="nav-chapters previous" title="You can navigate through the chapters using the arrow keys">
|
2017-02-25 20:56:50 +00:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<a href="pages/toml.html" class="nav-chapters next" title="You can navigate through the chapters using the arrow keys">
|
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Local fallback for Font Awesome -->
|
|
|
|
<script>
|
|
|
|
if ($(".fa").css("font-family") !== "FontAwesome") {
|
|
|
|
$('<link rel="stylesheet" type="text/css" href="_FontAwesome/css/font-awesome.css">').prependTo('head');
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- Livereload script (if served using the cli tool) -->
|
|
|
|
|
2017-02-26 04:03:10 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
var socket = new WebSocket("ws://localhost:3001");
|
|
|
|
socket.onmessage = function (event) {
|
|
|
|
if (event.data === "reload") {
|
|
|
|
socket.close();
|
|
|
|
location.reload(true); // force reload from server (not from cache)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
window.onbeforeunload = function() {
|
|
|
|
socket.close();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2017-02-25 20:56:50 +00:00
|
|
|
|
|
|
|
<script src="highlight.js"></script>
|
|
|
|
<script src="book.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|