pub enum PartValue {
Object(Value),
ArrayItem(ArrayItem),
}
Expand description
A part of a json path which can be either an object or an array item
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PartValue
impl RefUnwindSafe for PartValue
impl Send for PartValue
impl Sync for PartValue
impl Unpin for PartValue
impl UnwindSafe for PartValue
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