pub enum RepositoryError {
Internal(String),
RepositoryNotFound(RepositoryNotFoundError),
}
Expand description
An error resulting from operations on a repository.
Variants§
Internal(String)
An internal unspecified error.
RepositoryNotFound(RepositoryNotFoundError)
Repository not found.
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
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<RepositoryNotFoundError> for RepositoryError
impl From<RepositoryNotFoundError> for RepositoryError
Source§fn from(source: RepositoryNotFoundError) -> Self
fn from(source: RepositoryNotFoundError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RepositoryError
impl RefUnwindSafe for RepositoryError
impl Send for RepositoryError
impl Sync for RepositoryError
impl Unpin for RepositoryError
impl UnwindSafe 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