Struct proc_macro2::SourceFile[][src]

pub struct SourceFile(_);

The source file of a given Span.

This type is semver exempt and not exposed by default.

Methods

impl SourceFile
[src]

Get the path to this source file.

Note

If the code span associated with this SourceFile was generated by an external macro, this may not be an actual path on the filesystem. Use is_real to check.

Also note that even if is_real returns true, if --remap-path-prefix was passed on the command line, the path as given may not actually be valid.

Returns true if this source file is a real source file, and not generated by an external macro's expansion.

Trait Implementations

impl Clone for SourceFile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SourceFile
[src]

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

This method tests for !=.

impl Eq for SourceFile
[src]

impl AsRef<FileName> for SourceFile
[src]

Performs the conversion.

impl Debug for SourceFile
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SourceFile

impl Sync for SourceFile