#[repr(C)]pub struct json_error_t {
pub line: c_int,
pub column: c_int,
pub position: c_int,
pub source: [c_char; 80],
pub text: [c_char; 160],
}Expand description
An error that occurred during JSON processing.
Fields§
§line: c_int§column: c_int§position: c_int§source: [c_char; 80]§text: [c_char; 160]Auto Trait Implementations§
impl Freeze for json_error_t
impl RefUnwindSafe for json_error_t
impl Send for json_error_t
impl Sync for json_error_t
impl Unpin for json_error_t
impl UnwindSafe for json_error_t
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