pub struct ParseOptions {
pub allow_comments: bool,
pub allow_loose_object_property_names: bool,
pub allow_trailing_commas: bool,
pub allow_single_quoted_strings: bool,
pub allow_hexadecimal_numbers: bool,
pub allow_unary_plus_numbers: bool,
}Expand description
Options for parsing.
Fields§
§allow_comments: boolAllow comments (defaults to true).
allow_loose_object_property_names: boolAllow words and numbers as object property names (defaults to true).
allow_trailing_commas: boolAllow trailing commas on object literal and array literal values (defaults to true).
allow_single_quoted_strings: boolAllow single-quoted strings (defaults to true).
allow_hexadecimal_numbers: boolAllow hexadecimal numbers like 0xFF (defaults to true).
allow_unary_plus_numbers: boolAllow unary plus sign on numbers like +42 (defaults to true).
Trait Implementations§
Source§impl Clone for ParseOptions
impl Clone for ParseOptions
Source§fn clone(&self) -> ParseOptions
fn clone(&self) -> ParseOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParseOptions
impl RefUnwindSafe for ParseOptions
impl Send for ParseOptions
impl Sync for ParseOptions
impl Unpin for ParseOptions
impl UnwindSafe for ParseOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more