Enum apt_parser::errors::APTError
source · pub enum APTError {
KVError(KVError),
ParseError(ParseError),
MissingKeyError(MissingKeyError),
PackagesError(PackagesError),
}
Variants§
KVError(KVError)
ParseError(ParseError)
MissingKeyError(MissingKeyError)
PackagesError(PackagesError)
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<PackagesError> for APTError
impl From<PackagesError> for APTError
source§fn from(err: PackagesError) -> APTError
fn from(err: PackagesError) -> 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.