pub enum ParseError {
TotalParseError(ParseIntError),
AvgParseError(ParseFloatError),
UnexpectedTerm(String),
MissingLine(PsiLine),
}
Expand description
Error type for PSI parsing
Variants§
TotalParseError(ParseIntError)
AvgParseError(ParseFloatError)
UnexpectedTerm(String)
MissingLine(PsiLine)
Trait Implementations§
Source§impl Debug for ParseError
impl Debug for ParseError
Source§impl From<ParseError> for PsiError
impl From<ParseError> for PsiError
Source§fn from(e: ParseError) -> Self
fn from(e: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseError
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
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