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§
Source§impl Ord for Options
impl Ord for Options
Source§impl PartialOrd for Options
impl PartialOrd for Options
impl Copy for Options
impl Eq for Options
impl StructuralPartialEq for Options
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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