pub struct Parser<C: Iterator<Item = Result<DecodedChar, E>>, E> { /* private fields */ }
Expand description
JSON parser.
Implementations§
Auto Trait Implementations§
impl<C, E> Freeze for Parser<C, E>where
C: Freeze,
impl<C, E> RefUnwindSafe for Parser<C, E>where
C: RefUnwindSafe,
impl<C, E> Send for Parser<C, E>where
C: Send,
impl<C, E> Sync for Parser<C, E>where
C: Sync,
impl<C, E> Unpin for Parser<C, E>where
C: Unpin,
impl<C, E> UnwindSafe for Parser<C, E>where
C: UnwindSafe,
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