commit
1ba48019d7
|
@ -79,12 +79,12 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Errors that can occur when deserializing a type.
|
/// Errors that can occur when deserializing a type.
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, PartialEq, Clone)]
|
||||||
pub struct Error {
|
pub struct Error {
|
||||||
inner: Box<ErrorInner>,
|
inner: Box<ErrorInner>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, PartialEq, Clone)]
|
||||||
struct ErrorInner {
|
struct ErrorInner {
|
||||||
kind: ErrorKind,
|
kind: ErrorKind,
|
||||||
line: Option<usize>,
|
line: Option<usize>,
|
||||||
|
@ -94,7 +94,7 @@ struct ErrorInner {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Errors that can occur when deserializing a type.
|
/// Errors that can occur when deserializing a type.
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, PartialEq, Clone)]
|
||||||
enum ErrorKind {
|
enum ErrorKind {
|
||||||
/// EOF was reached when looking for a value
|
/// EOF was reached when looking for a value
|
||||||
UnexpectedEof,
|
UnexpectedEof,
|
||||||
|
|
Loading…
Reference in a new issue