pub struct LocationJsonData {
pub file: String,
pub line: u32,
pub column: u32,
}Expand description
JSON data for error location.
Fields§
§file: StringFile where error happen
line: u32Line where error happen
column: u32Column where error happen
Trait Implementations§
Source§impl Clone for LocationJsonData
impl Clone for LocationJsonData
Source§fn clone(&self) -> LocationJsonData
fn clone(&self) -> LocationJsonData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LocationJsonData
impl Debug for LocationJsonData
Source§impl<'de> Deserialize<'de> for LocationJsonData
impl<'de> Deserialize<'de> for LocationJsonData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LocationJsonData
impl RefUnwindSafe for LocationJsonData
impl Send for LocationJsonData
impl Sync for LocationJsonData
impl Unpin for LocationJsonData
impl UnsafeUnpin for LocationJsonData
impl UnwindSafe for LocationJsonData
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