pub enum CursorFrame {
Array {
index: usize,
json: JVArray,
},
Object {
index: usize,
key: JVString,
json: JVObject,
iterator: OwnedObjectIterator,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CursorFrame
impl Clone for CursorFrame
Source§fn clone(&self) -> CursorFrame
fn clone(&self) -> CursorFrame
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CursorFrame
impl Debug for CursorFrame
Source§impl PartialEq for CursorFrame
impl PartialEq for CursorFrame
impl Eq for CursorFrame
Auto Trait Implementations§
impl Freeze for CursorFrame
impl RefUnwindSafe for CursorFrame
impl !Send for CursorFrame
impl !Sync for CursorFrame
impl Unpin for CursorFrame
impl UnwindSafe for CursorFrame
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