#[repr(C)]pub struct VALUE {
pub t: VALUE_TYPE,
pub u: UINT,
pub d: UINT64,
}
Expand description
A JSON value.
An opaque union that can hold different types of values: numbers, strings, arrays, objects, etc.
Fields§
§t: VALUE_TYPE
Value type.
u: UINT
Value unit type.
d: UINT64
Value data.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VALUE
impl RefUnwindSafe for VALUE
impl Send for VALUE
impl Sync for VALUE
impl Unpin for VALUE
impl UnwindSafe for VALUE
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