#[non_exhaustive]pub enum ParseError {
Show 16 variants
PestError(Error<Rule>),
ParseIntError(ParseIntError),
ParseFloatError(ParseFloatError),
Base64DecodeError(DecodeError),
InvalidEscapeChar(char),
InvalidUnicodeEscape(String),
InvalidUnicodeCodepoint(u32),
OddHexDigits,
DuplicateKey(String),
InvalidTimestamp(String, String),
MixedIndent(String),
InconsistentIndentTab(Tab, Tab),
InvalidIndentCount(usize, usize),
UnexpectedIndent(usize, usize),
EmptyDocument,
MissingValue(usize),
}Expand description
Errors that can occur during parsing.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PestError(Error<Rule>)
Error from the pest parser (syntax errors).
ParseIntError(ParseIntError)
Integer parsing or overflow error.
ParseFloatError(ParseFloatError)
Float parsing error.
Base64DecodeError(DecodeError)
Base64 decoding error.
InvalidEscapeChar(char)
Invalid escape sequence in string.
InvalidUnicodeEscape(String)
Invalid unicode escape sequence.
InvalidUnicodeCodepoint(u32)
Invalid unicode codepoint.
OddHexDigits
Hex binary with odd number of digits.
DuplicateKey(String)
Duplicate key in map.
InvalidTimestamp(String, String)
Invalid timestamp format.
MixedIndent(String)
Mixed tabs and spaces in indentation base unit.
InconsistentIndentTab(Tab, Tab)
Inconsistent indentation type (switching between spaces and tabs).
InvalidIndentCount(usize, usize)
Invalid indentation (not a multiple of the base unit).
UnexpectedIndent(usize, usize)
Unexpected indentation level.
EmptyDocument
Empty document.
MissingValue(usize)
Missing value for list item or map entry.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ParseFloatError> for Error
impl From<ParseFloatError> for Error
Source§fn from(source: ParseFloatError) -> Self
fn from(source: ParseFloatError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more