pub enum JsonBaseValue {
Object(Object),
Array(Vec<JsonValue>),
}
Expand description
A spacial value which will be located at the base of a QJSONDocument
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JsonBaseValue
impl RefUnwindSafe for JsonBaseValue
impl Send for JsonBaseValue
impl Sync for JsonBaseValue
impl Unpin for JsonBaseValue
impl UnwindSafe for JsonBaseValue
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