pub enum RepositoryError {
NotFound(String),
AlreadyExists(String),
Storage(String),
Serialization(String),
Constraint(String),
}Expand description
Domain-specific errors for repository operations.
This error type abstracts away storage implementation details (e.g., sqlx errors) and provides a clean interface for services to handle storage failures.
Variants§
NotFound(String)
The requested entity was not found.
AlreadyExists(String)
An entity with the same identifier already exists.
Storage(String)
Storage backend error (database, filesystem, etc.).
Serialization(String)
Serialization or deserialization failed.
Constraint(String)
A constraint was violated (e.g., foreign key, unique constraint).
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<RepositoryError> for CoreError
impl From<RepositoryError> for CoreError
Source§fn from(source: RepositoryError) -> Self
fn from(source: RepositoryError) -> 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