[][src]Trait rustc_ap_rustc_span::source_map::FileLoader

pub trait FileLoader {
    pub fn file_exists(&self, path: &Path) -> bool;
pub fn read_file(&self, path: &Path) -> Result<String>; }

An abstraction over the fs operations used by the Parser.

Required methods

pub fn file_exists(&self, path: &Path) -> bool[src]

Query the existence of a file.

pub fn read_file(&self, path: &Path) -> Result<String>[src]

Read the contents of an UTF-8 file into memory.

Loading content...

Implementors

impl FileLoader for RealFileLoader[src]

Loading content...