Struct lcov_parser::RecordParseError [] [src]

pub struct RecordParseError {
    pub line: u32,
    pub column: u32,
    pub message: String,
}

Fields

Trait Implementations

impl PartialEq for RecordParseError
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for RecordParseError
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> From<CombinatorParseError<State<&'a str>>> for RecordParseError
[src]

[src]

Performs the conversion.

impl Display for RecordParseError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for RecordParseError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl From<RecordParseError> for ParseError
[src]

[src]

Performs the conversion.

Auto Trait Implementations