[−][src]Struct rustc_ap_rustc_span::SourceFile
A single source in the SourceMap.
Fields
name: FileNameThe 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>).
name_was_remapped: booltrue if the name field above has been modified by --remap-path-prefix.
unmapped_path: Option<FileName>The unmapped path of the file that the source came from.
Set to None if the SourceFile was imported from an external crate.
src: Option<Lrc<String>>The complete source code.
src_hash: SourceFileHashThe 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: BytePosThe start position of this source in the SourceMap.
end_pos: BytePosThe 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: u128A hash of the filename, used for speeding up hashing in incremental compilation.
cnum: CrateNumIndicates which crate this SourceFile was imported from.
Implementations
impl SourceFile[src]
pub fn new(
name: FileName,
name_was_remapped: bool,
unmapped_path: FileName,
src: String,
start_pos: BytePos,
hash_kind: SourceFileHashAlgorithm
) -> Self[src]
name: FileName,
name_was_remapped: bool,
unmapped_path: FileName,
src: String,
start_pos: BytePos,
hash_kind: SourceFileHashAlgorithm
) -> Self
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]
F: FnOnce() -> Option<String>,
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]
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 byte_length(&self) -> u32[src]
pub fn count_lines(&self) -> 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) -> (BytePos, BytePos)[src]
pub fn contains(&self, byte_pos: BytePos) -> bool[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.
Trait Implementations
impl Clone for SourceFile[src]
fn clone(&self) -> SourceFile[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for SourceFile[src]
impl Decodable for SourceFile[src]
impl Encodable 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> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Decodable for T where
T: UseSpecializedDecodable, [src]
T: UseSpecializedDecodable,
impl<T> Encodable for T where
T: UseSpecializedEncodable + ?Sized, [src]
T: UseSpecializedEncodable + ?Sized,
impl<T> Erased for T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<E> SpecializationError for E[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized, [src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,