pub struct JSONType {
pub string: &'static str,
pub boolean: &'static str,
pub object: &'static str,
pub array: &'static str,
pub integer: &'static str,
pub number: &'static str,
pub null: &'static str,
}
Fields§
§string: &'static str
§boolean: &'static str
§object: &'static str
§array: &'static str
§integer: &'static str
§number: &'static str
§null: &'static str
Auto Trait Implementations§
impl Freeze for JSONType
impl RefUnwindSafe for JSONType
impl Send for JSONType
impl Sync for JSONType
impl Unpin for JSONType
impl UnwindSafe for JSONType
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