pub enum RepositoryError {
InvalidFormat,
InvalidUri,
MissingUri,
InvalidType,
InvalidSignature,
YesNoForceFieldInvalid,
YesNoFieldInvalid,
UnrecognizedFieldName(String),
Lossy(Error),
Io(Error),
Url(ParseError),
}Expand description
Errors for APT sources parsing and conversion to/from super::Repository or super::legacy::LegacyRepository
Variants§
InvalidFormat
Invalid repository format
InvalidUri
Invalid repository URI
MissingUri
Missing repository URI - mandatory
InvalidType
Unrecognized repository type
InvalidSignature
The Signed-By field is incorrect
YesNoForceFieldInvalid
The Yes/No/Force field has invalid/unexpected value
YesNoFieldInvalid
The Yes/No field has invalid/unexpected value
UnrecognizedFieldName(String)
The field in the parsed data is not recognized (check man sources.list)
Lossy(Error)
Errors in lossy serializer or deserializer
Io(Error)
I/O Error
Url(ParseError)
URL Error
Trait Implementations§
Source§impl Debug for RepositoryError
impl Debug for RepositoryError
Source§impl Display for RepositoryError
impl Display for RepositoryError
Source§impl Error for RepositoryError
impl Error for RepositoryError
1.30.0 · 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<Error> for RepositoryError
impl From<Error> for RepositoryError
Source§impl From<ParseError> for RepositoryError
impl From<ParseError> for RepositoryError
Source§fn from(e: ParseError) -> Self
fn from(e: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for RepositoryError
impl !UnwindSafe for RepositoryError
impl Freeze for RepositoryError
impl Send for RepositoryError
impl Sync for RepositoryError
impl Unpin for RepositoryError
impl UnsafeUnpin for RepositoryError
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