#[non_exhaustive]pub struct ErrorLocation {
pub line: i32,
pub column: i32,
/* private fields */
}Expand description
Holds information about where the error is located.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.line: i32Optional. If applicable, denotes the line where the error occurred. A zero value means that there is no line information.
column: i32Optional. If applicable, denotes the column where the error occurred. A zero value means that there is no columns information.
Implementations§
Source§impl ErrorLocation
impl ErrorLocation
Trait Implementations§
Source§impl Clone for ErrorLocation
impl Clone for ErrorLocation
Source§fn clone(&self) -> ErrorLocation
fn clone(&self) -> ErrorLocation
Returns a duplicate of the value. Read more
1.0.0 · 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 ErrorLocation
impl Debug for ErrorLocation
Source§impl Default for ErrorLocation
impl Default for ErrorLocation
Source§fn default() -> ErrorLocation
fn default() -> ErrorLocation
Returns the “default value” for a type. Read more
Source§impl Message for ErrorLocation
impl Message for ErrorLocation
Source§impl PartialEq for ErrorLocation
impl PartialEq for ErrorLocation
impl StructuralPartialEq for ErrorLocation
Auto Trait Implementations§
impl Freeze for ErrorLocation
impl RefUnwindSafe for ErrorLocation
impl Send for ErrorLocation
impl Sync for ErrorLocation
impl Unpin for ErrorLocation
impl UnwindSafe for ErrorLocation
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