Struct source_map_mappings::OriginalLocation [] [src]

pub struct OriginalLocation {
    pub source: u32,
    pub original_line: u32,
    pub original_column: u32,
    pub name: Option<u32>,
}

Original location information within a mapping.

Contains a source filename, an original line, and an original column. Might also contain an associated name.

Fields

The source filename.

The original line.

The original column.

The associated name, if any.

Trait Implementations

impl Clone for OriginalLocation
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for OriginalLocation
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for OriginalLocation
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for OriginalLocation
[src]