pub struct SourceMap {
    used_address_space: AtomicU32,
    files: RwLock<SourceMapFiles>,
    file_loader: Box<dyn FileLoader + Sync + Send>,
    path_mapping: FilePathMapping,
    hash_kind: SourceFileHashAlgorithm,
}

Fields§

§used_address_space: AtomicU32

The address space below this value is currently used by the files in the source map.

§files: RwLock<SourceMapFiles>§file_loader: Box<dyn FileLoader + Sync + Send>§path_mapping: FilePathMapping§hash_kind: SourceFileHashAlgorithm

The algorithm used for hashing the contents of each source file.

Implementations§

Loads source file as a binary blob.

Unlike load_file, guarantees that no normalization like BOM-removal takes place.

Creates a new SourceFile. If a file already exists in the SourceMap with the same ID, that file is returned unmodified.

Allocates a new SourceFile representing a source file from an external crate. The source code of such an “imported SourceFile” is not available, but we still know enough to generate accurate debuginfo location information for things inlined from other crates.

If there is a doctest offset, applies it to the line.

Return the SourceFile that contains the given BytePos

Looks up source information about a BytePos.

If the corresponding SourceFile is empty, does not return a line number.

Format the span location suitable for embedding in build artifacts

Format the span location suitable for pretty printing anotations with relative line numbers

Format the span location to be printed in diagnostics. Must not be emitted to build artifacts as this may leak local file paths. Use span_to_embeddable_string for string suitable for embedding.

Extracts the source surrounding the given Span using the extract_source function. The extract function takes three arguments: a string slice containing the source, an index in the slice for the beginning of the span and an index in the slice for the end of the span.

Returns the source snippet as String corresponding to the given Span.

Returns the source snippet as String before the given Span.

Extends the given Span to just after the previous occurrence of c. Return the same span if no character could be found or if an error occurred while retrieving the code snippet.

Extends the given Span to just after the previous occurrence of pat when surrounded by whitespace. Returns None if the pattern could not be found or if an error occurred while retrieving the code snippet.

Returns the source snippet as String after the given Span.

Extends the given Span while the next character matches the predicate

Extends the given Span to just before the next occurrence of c.

Extends the given Span to contain the entire line it is on.

Given a Span, tries to get a shorter span ending before the first occurrence of char c.

Given a ‘Span’, tries to tell if it’s wrapped by “<>” or “()” the algorithm searches if the next character is ‘>’ or ‘)’ after skipping white space then searches the previous charactoer to match ‘<’ or ‘(’ after skipping white space return true if wrapped by ‘<>’ or ‘()’

Given a Span, tries to get a shorter span ending just after the first occurrence of char c.

Given a Span, gets a new Span covering the first token and all its trailing whitespace or the original Span.

If sp points to "let mut x", then a span pointing at "let " will be returned.

Given a Span, gets a new Span covering the first token without its trailing whitespace or the original Span in case of error.

If sp points to "let mut x", then a span pointing at "let" will be returned.

Given a Span, gets a shorter one until predicate yields false.

Given a Span, return a span ending in the closest {. This is useful when you have a Span enclosing a whole item but we need to point at only the head (usually the first line) of that item.

Only suitable for diagnostics.

Returns a new span representing just the first character of the given span.

Returns a new span representing just the last character of this span.

Returns a new span representing the next character after the end-point of this span. Special cases:

  • if span is a dummy one, returns the same span
  • if next_point reached the end of source, return a span exceeding the end of source, which means sm.span_to_snippet(next_point) will get Err
  • respect multi-byte characters

Returns a new span to check next none-whitespace character or some specified expected character If expect is none, the first span of non-whitespace character is returned. If expect presented, the first span of the character expect is returned Otherwise, the span reached to limit is returned.

Finds the width of the character, either before or after the end of provided span, depending on the forwards parameter.

For a global BytePos, computes the local offset within the containing SourceFile.

Returns the index of the SourceFile (in self.files) that contains pos. This index is guaranteed to be valid for the lifetime of this SourceMap, since source_files is a MonotonicVec

Gets the span of a statement. If the statement is a macro expansion, the span in the context of the block span is found. The trailing semicolon is included on a best-effort basis.

Tries to find the span of the semicolon of a macro call statement. The input must be the call site span of a statement from macro expansion.

//       v output
   mac!();
// ^^^^^^ input

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 120 bytes