pub enum JsonStackElement<D: Dealloc> {
Object(JsonStackObject<D>),
Array(Vec<Any<D>>),
}
Variants§
Object(JsonStackObject<D>)
Array(Vec<Any<D>>)
Auto Trait Implementations§
impl<D> Freeze for JsonStackElement<D>
impl<D> RefUnwindSafe for JsonStackElement<D>where
D: RefUnwindSafe,
impl<D> Send for JsonStackElement<D>where
D: Send,
impl<D> Sync for JsonStackElement<D>where
D: Sync,
impl<D> Unpin for JsonStackElement<D>where
D: Unpin,
impl<D> UnwindSafe for JsonStackElement<D>where
D: RefUnwindSafe + 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