pub struct AnyState<M: Manager> {
pub data_type: DataType,
pub status: ParsingStatus,
pub current: JsonElement<M::Dealloc>,
pub stack: Vec<JsonStackElement<M::Dealloc>>,
pub consts: BTreeMap<String, Any<M::Dealloc>>,
}
Fields§
§data_type: DataType
§status: ParsingStatus
§current: JsonElement<M::Dealloc>
§stack: Vec<JsonStackElement<M::Dealloc>>
§consts: BTreeMap<String, Any<M::Dealloc>>
Trait Implementations§
Auto Trait Implementations§
impl<M> RefUnwindSafe for AnyState<M>
impl<M> Send for AnyState<M>
impl<M> Sync for AnyState<M>
impl<M> Unpin for AnyState<M>
impl<M> UnwindSafe for AnyState<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