Struct json_syntax::parse::Options
source · [−]pub struct Options {
pub accept_truncated_surrogate_pair: bool,
pub accept_invalid_codepoints: bool,
}
Expand description
Parser options.
Fields
accept_truncated_surrogate_pair: bool
Whether or not to accept a high surrogate without its low counterpart in strings.
In such instance, the high surrogate will be replaced with the Unicode REPLACEMENT CHARACTER, U+FFFD.
accept_invalid_codepoints: bool
Whether or not to accept invalid Unicode codepoints in strings.
Invalid codepoints will be replaced with the Unicode REPLACEMENT CHARACTER, U+FFFD.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more