Struct rustc_ap_rustc_span::SourceFile [−][src]
pub struct SourceFile { pub name: FileName, pub src: Option<Lrc<String>>, pub src_hash: SourceFileHash, pub external_src: Lock<ExternalSource>, pub start_pos: BytePos, pub end_pos: BytePos, pub lines: Vec<BytePos>, pub multibyte_chars: Vec<MultiByteChar>, pub non_narrow_chars: Vec<NonNarrowChar>, pub normalized_pos: Vec<NormalizedPos>, pub name_hash: u128, pub cnum: CrateNum, }
Expand description
A single source in the SourceMap
.
Fields
name: FileName
The name of the file that the source came from. Source that doesn’t
originate from files has names between angle brackets by convention
(e.g., <anon>
).
src: Option<Lrc<String>>
The complete source code.
src_hash: SourceFileHash
The source code’s hash.
external_src: Lock<ExternalSource>
The external source code (used for external crates, which will have a None
value as self.src
.
start_pos: BytePos
The start position of this source in the SourceMap
.
end_pos: BytePos
The end position of this source in the SourceMap
.
lines: Vec<BytePos>
Locations of lines beginnings in the source code.
multibyte_chars: Vec<MultiByteChar>
Locations of multi-byte characters in the source code.
non_narrow_chars: Vec<NonNarrowChar>
Width of characters that are not narrow in the source code.
normalized_pos: Vec<NormalizedPos>
Locations of characters removed during normalization.
name_hash: u128
A hash of the filename, used for speeding up hashing in incremental compilation.
cnum: CrateNum
Indicates which crate this SourceFile
was imported from.
Implementations
impl SourceFile
[src]
impl SourceFile
[src]pub fn new(
name: FileName,
src: String,
start_pos: BytePos,
hash_kind: SourceFileHashAlgorithm
) -> Self
[src]
name: FileName,
src: String,
start_pos: BytePos,
hash_kind: SourceFileHashAlgorithm
) -> Self
pub fn line_begin_pos(&self, pos: BytePos) -> BytePos
[src]
pub fn line_begin_pos(&self, pos: BytePos) -> BytePos
[src]Returns the BytePos
of the beginning of the current line.
pub fn add_external_src<F>(&self, get_src: F) -> bool where
F: FnOnce() -> Option<String>,
[src]
pub fn add_external_src<F>(&self, get_src: F) -> bool where
F: FnOnce() -> Option<String>,
[src]Add externally loaded source. If the hash of the input doesn’t match or no input is supplied via None, it is interpreted as an error and the corresponding enum variant is set. The return value signifies whether some kind of source is present.
pub fn get_line(&self, line_number: usize) -> Option<Cow<'_, str>>
[src]
pub fn get_line(&self, line_number: usize) -> Option<Cow<'_, str>>
[src]Gets a line from the list of pre-computed line-beginnings. The line number here is 0-based.
pub fn is_real_file(&self) -> bool
[src]
pub fn is_imported(&self) -> bool
[src]
pub fn count_lines(&self) -> usize
[src]
pub fn lookup_line(&self, pos: BytePos) -> Option<usize>
[src]
pub fn lookup_line(&self, pos: BytePos) -> Option<usize>
[src]Finds the line containing the given position. The return value is the
index into the lines
array of this SourceFile
, not the 1-based line
number. If the source_file is empty or the position is located before the
first line, None
is returned.
pub fn line_bounds(&self, line_index: usize) -> Range<BytePos>
[src]
pub fn contains(&self, byte_pos: BytePos) -> bool
[src]
pub fn contains(&self, byte_pos: BytePos) -> bool
[src]Returns whether or not the file contains the given SourceMap
byte
position. The position one past the end of the file is considered to be
contained by the file. This implies that files for which is_empty
returns true still contain one byte position according to this function.
pub fn is_empty(&self) -> bool
[src]
pub fn original_relative_byte_pos(&self, pos: BytePos) -> BytePos
[src]
pub fn original_relative_byte_pos(&self, pos: BytePos) -> BytePos
[src]Calculates the original byte position relative to the start of the file based on the given byte position.
pub fn bytepos_to_file_charpos(&self, bpos: BytePos) -> CharPos
[src]
pub fn bytepos_to_file_charpos(&self, bpos: BytePos) -> CharPos
[src]Converts an absolute BytePos
to a CharPos
relative to the SourceFile
.
Trait Implementations
impl Clone for SourceFile
[src]
impl Clone for SourceFile
[src]fn clone(&self) -> SourceFile
[src]
fn clone(&self) -> SourceFile
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for SourceFile
[src]
impl Debug for SourceFile
[src]impl<D: Decoder> Decodable<D> for SourceFile
[src]
impl<D: Decoder> Decodable<D> for SourceFile
[src]Auto Trait Implementations
impl !RefUnwindSafe for SourceFile
impl !Send for SourceFile
impl !Sync for SourceFile
impl Unpin for SourceFile
impl UnwindSafe for SourceFile
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,