Struct rust_web_server::json::property::JSONValue
source · 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 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