Struct lcov_parser::RecordParseError
[−]
[src]
pub struct RecordParseError { pub line: u32, pub column: u32, pub message: String, }
Fields
line: u32
column: u32
message: String
Trait Implementations
impl PartialEq for RecordParseError
[src]
fn eq(&self, __arg_0: &RecordParseError) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &RecordParseError) -> bool
[src]
This method tests for !=
.
impl Debug for RecordParseError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a> From<CombinatorParseError<State<&'a str>>> for RecordParseError
[src]
impl Display for RecordParseError
[src]
fn fmt(&self, f: &mut Formatter) -> FormatResult
[src]
Formats the value using the given formatter. Read more
impl Error for RecordParseError
[src]
fn description(&self) -> &str
[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
1.0.0[src]
The lower-level cause of this error, if any. Read more
impl From<RecordParseError> for ParseError
[src]
fn from(err: RecordParseError) -> Self
[src]
Performs the conversion.