pub struct SyntaxDetail {
pub message: String,
pub line: u32,
pub column: u32,
}Expand description
Detailed syntax error with source location.
Fields§
§message: String§line: u32§column: u32Trait Implementations§
Source§impl Clone for SyntaxDetail
impl Clone for SyntaxDetail
Source§fn clone(&self) -> SyntaxDetail
fn clone(&self) -> SyntaxDetail
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 moreAuto Trait Implementations§
impl Freeze for SyntaxDetail
impl RefUnwindSafe for SyntaxDetail
impl Send for SyntaxDetail
impl Sync for SyntaxDetail
impl Unpin for SyntaxDetail
impl UnsafeUnpin for SyntaxDetail
impl UnwindSafe for SyntaxDetail
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