Struct proc_macro::SourceFile
source · [−]pub struct SourceFile(_);
Expand description
The source file of a given Span
.
Implementations
sourceimpl SourceFile
impl SourceFile
sourcepub fn path(&self) -> PathBuf
pub fn path(&self) -> PathBuf
Gets the path to this source file.
Note
If the code span associated with this SourceFile
was generated by an external macro, this
macro, this might 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 might not actually be valid.
Trait Implementations
sourceimpl Clone for SourceFile
impl Clone for SourceFile
sourcefn clone(&self) -> SourceFile
fn clone(&self) -> SourceFile
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SourceFile
impl Debug for SourceFile
sourceimpl PartialEq<SourceFile> for SourceFile
impl PartialEq<SourceFile> for SourceFile
impl Eq for SourceFile
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more