pub struct Location<'tu> {
pub file: Option<File<'tu>>,
pub line: u32,
pub column: u32,
pub offset: u32,
}
Expand description
The file, line, column, and character offset of a source location.
Fields§
§file: Option<File<'tu>>
The file of the source location, if it has any.
line: u32
The line of the source location.
column: u32
The column of the source location.
offset: u32
The character offset of the source location.
Trait Implementations§
impl<'tu> Copy for Location<'tu>
impl<'tu> Eq for Location<'tu>
impl<'tu> StructuralPartialEq for Location<'tu>
Auto Trait Implementations§
impl<'tu> Freeze for Location<'tu>
impl<'tu> RefUnwindSafe for Location<'tu>
impl<'tu> !Send for Location<'tu>
impl<'tu> !Sync for Location<'tu>
impl<'tu> Unpin for Location<'tu>
impl<'tu> UnwindSafe for Location<'tu>
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