vexy-json-core 1.5.11

Core parser for Vexy JSON's forgiving JSON syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// this_file: src/error/result.rs

use super::types::Error;

/// Convenience type alias for Results using vexy_json's Error type.
///
/// This makes function signatures more concise throughout the codebase
/// while maintaining type safety. Most parsing functions return this type.
pub type Result<T> = std::result::Result<T, Error>;

/// Convenience type alias for parsing operations.
pub type ParseResult<T = crate::ast::Value> = std::result::Result<T, Error>;