Struct wavefront_obj::ParseError [] [src]

pub struct ParseError {
    pub line_number: usize,
    pub message: String,
}

A parsing error, with location information.

Fields

line_number: usize

The line of input the error is on.

message: String

The error message.

Trait Implementations

impl PartialEq for ParseError
[src]

fn eq(&self, __arg_0: &ParseError) -> bool

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

fn ne(&self, __arg_0: &ParseError) -> bool

This method tests for !=.

impl Debug for ParseError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.