Struct erl_pp::directives::Warning
[−]
[src]
pub struct Warning {
pub _hyphen: SymbolToken,
pub _warning: AtomToken,
pub _open_paren: SymbolToken,
pub message: StringToken,
pub _close_paren: SymbolToken,
pub _dot: SymbolToken,
}warning directive.
See 9.6 -error() and -warning() directives for detailed information.
Fields
_hyphen: SymbolToken
_warning: AtomToken
_open_paren: SymbolToken
message: StringToken
_close_paren: SymbolToken
_dot: SymbolToken
Trait Implementations
impl Debug for Warning[src]
impl Clone for Warning[src]
fn clone(&self) -> Warning
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 Warning[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.