Add Clone derive on ParserError
This commit is contained in:
parent
283abf4a94
commit
db75e532e5
|
@ -103,7 +103,7 @@ pub struct Parser<'a> {
|
||||||
///
|
///
|
||||||
/// The data in this structure can be used to trace back to the original cause
|
/// The data in this structure can be used to trace back to the original cause
|
||||||
/// of the error in order to provide diagnostics about parse errors.
|
/// of the error in order to provide diagnostics about parse errors.
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct ParserError {
|
pub struct ParserError {
|
||||||
/// The low byte at which this error is pointing at.
|
/// The low byte at which this error is pointing at.
|
||||||
pub lo: usize,
|
pub lo: usize,
|
||||||
|
|
Loading…
Reference in a new issue