pub enum JsonState<M: Manager> {
ParseRoot(RootState<M>),
ParseConst(ConstState<M>),
ParseModule(AnyState<M>),
Result(ParseResult<M::Dealloc>),
Error(ParseError),
}
Variants§
ParseRoot(RootState<M>)
ParseConst(ConstState<M>)
ParseModule(AnyState<M>)
Result(ParseResult<M::Dealloc>)
Error(ParseError)
Implementations§
Auto Trait Implementations§
impl<M> Freeze for JsonState<M>
impl<M> RefUnwindSafe for JsonState<M>
impl<M> Send for JsonState<M>
impl<M> Sync for JsonState<M>
impl<M> Unpin for JsonState<M>
impl<M> UnwindSafe for JsonState<M>
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