pub struct JSONValue {
pub f64: Option<f64>,
pub i128: Option<i128>,
pub string: Option<String>,
pub object: Option<String>,
pub array: Option<String>,
pub bool: Option<bool>,
pub null: Option<Null>,
}
Fields§
§f64: Option<f64>
§i128: Option<i128>
§string: Option<String>
§object: Option<String>
§array: Option<String>
§bool: Option<bool>
§null: Option<Null>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JSONValue
impl RefUnwindSafe for JSONValue
impl Send for JSONValue
impl Sync for JSONValue
impl Unpin for JSONValue
impl UnwindSafe for JSONValue
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