pub enum ParserError {
    Io(Error),
    Parse(String),
    InvalidRecord(String),
    InvalidData(String),
}Variants§
Trait Implementations§
Source§impl Debug for ParserError
 
impl Debug for ParserError
Source§impl Display for ParserError
 
impl Display for ParserError
Source§impl From<AttrError> for ParserError
 
impl From<AttrError> for ParserError
Source§fn from(err: AttrError) -> ParserError
 
fn from(err: AttrError) -> ParserError
Converts to this type from the input type.
Source§impl From<EncodingError> for ParserError
 
impl From<EncodingError> for ParserError
Source§fn from(err: EncodingError) -> ParserError
 
fn from(err: EncodingError) -> ParserError
Converts to this type from the input type.
Source§impl From<Error> for ParserError
 
impl From<Error> for ParserError
Source§fn from(err: Error) -> ParserError
 
fn from(err: Error) -> ParserError
Converts to this type from the input type.
Source§impl From<Error> for ParserError
 
impl From<Error> for ParserError
Source§fn from(err: Error) -> ParserError
 
fn from(err: Error) -> ParserError
Converts to this type from the input type.
Source§impl From<ParseIntError> for ParserError
 
impl From<ParseIntError> for ParserError
Source§fn from(err: ParseIntError) -> ParserError
 
fn from(err: ParseIntError) -> ParserError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParserError
impl !RefUnwindSafe for ParserError
impl Send for ParserError
impl Sync for ParserError
impl Unpin for ParserError
impl !UnwindSafe for ParserError
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
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more