Struct source_map_mappings::OriginalLocation
[−]
[src]
pub struct OriginalLocation { /* fields omitted */ }
Original location information within a mapping.
Contains a source filename, an original line, and an original column. Might also contain an associated name.
Methods
impl OriginalLocation
[src]
fn source(&self) -> u32
[src]
The source filename.
fn original_line(&self) -> u32
[src]
The original line.
fn original_column(&self) -> u32
[src]
The original column.
fn name(&self) -> Option<u32>
[src]
The name, if any.
Trait Implementations
impl Clone for OriginalLocation
[src]
fn clone(&self) -> OriginalLocation
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more