Struct erl_pp::directives::IncludeLib
[−]
[src]
pub struct IncludeLib {
pub _hyphen: SymbolToken,
pub _include_lib: AtomToken,
pub _open_paren: SymbolToken,
pub path: StringToken,
pub _close_paren: SymbolToken,
pub _dot: SymbolToken,
}include_lib directive.
See 9.1 File Inclusion for detailed information.
Fields
_hyphen: SymbolToken
_include_lib: AtomToken
_open_paren: SymbolToken
path: StringToken
_close_paren: SymbolToken
_dot: SymbolToken
Methods
impl IncludeLib[src]
fn include_lib(
&self,
code_paths: &VecDeque<PathBuf>
) -> Result<(PathBuf, String)>
&self,
code_paths: &VecDeque<PathBuf>
) -> Result<(PathBuf, String)>
Executes file inclusion.
Trait Implementations
impl Debug for IncludeLib[src]
impl Clone for IncludeLib[src]
fn clone(&self) -> IncludeLib
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PositionRange for IncludeLib[src]
fn start_position(&self) -> Position
Returns the (inclusive) start position of this.
fn end_position(&self) -> Position
Returns the (exclusive) end position of this.