#[repr(C)]pub struct cJSON {
pub next: *mut cJSON,
pub prev: *mut cJSON,
pub child: *mut cJSON,
pub type_: c_int,
pub valuestring: *mut c_char,
pub valueint: c_int,
pub valuedouble: f64,
pub string: *mut c_char,
}
Fields§
§next: *mut cJSON
§prev: *mut cJSON
§child: *mut cJSON
§type_: c_int
§valuestring: *mut c_char
§valueint: c_int
§valuedouble: f64
§string: *mut c_char
Trait Implementations§
impl Copy for cJSON
Auto Trait Implementations§
impl Freeze for cJSON
impl RefUnwindSafe for cJSON
impl !Send for cJSON
impl !Sync for cJSON
impl Unpin for cJSON
impl UnwindSafe for cJSON
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