Enum apt_parser::errors::APTError
source · pub enum APTError {
KVError(KVError),
ParseError(ParseError),
MissingKeyError(MissingKeyError),
}
Variants§
Trait Implementations§
source§impl Error for APTError
impl Error for APTError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<MissingKeyError> for APTError
impl From<MissingKeyError> for APTError
source§fn from(err: MissingKeyError) -> APTError
fn from(err: MissingKeyError) -> APTError
Converts to this type from the input type.
source§impl From<ParseError> for APTError
impl From<ParseError> for APTError
source§fn from(err: ParseError) -> APTError
fn from(err: ParseError) -> APTError
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for APTError
impl Send for APTError
impl Sync for APTError
impl Unpin for APTError
impl UnwindSafe for APTError
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