surfing 0.1.1

A Rust library for parsing JSON objects from text streams
Documentation
1
2
3
4
5
6
7
//! Constants used throughout the library.

/// Markers that indicate the start of a JSON structure
pub const MARKERS: [char; 2] = ['{', '['];

/// All paired markers (opening and closing) used in JSON structures
pub const PAIRED_MARKERS: [char; 4] = ['{', '}', '[', ']'];