pub enum ClawError {
Show 15 variants
Database(Error),
Migration(String),
Config(String),
NotFound {
entity: String,
id: String,
},
Conflict {
entity: String,
id: String,
},
Serialization(Error),
Snapshot(String),
SnapshotCorrupt(String),
Transaction(String),
Cache(String),
InvalidInput(String),
IoError(Error),
Store(String),
Index(String),
Internal(String),
}Expand description
The unified error type for claw-core operations.
Variants§
Database(Error)
An underlying SQLx database error occurred.
Migration(String)
A migration step failed.
Config(String)
Configuration validation failed.
NotFound
The requested record was not found.
Fields
Conflict
A unique constraint violation occurred.
Serialization(Error)
A serialization or deserialization error occurred.
Snapshot(String)
A snapshot operation failed.
SnapshotCorrupt(String)
Snapshot checksum verification failed.
Transaction(String)
A transaction operation failed.
Cache(String)
A cache operation failed.
InvalidInput(String)
The caller supplied invalid input.
IoError(Error)
An I/O error occurred (e.g. while managing snapshot files).
Store(String)
A store operation failed.
Index(String)
An index operation failed.
Internal(String)
An unexpected internal error occurred.
Trait Implementations§
Source§impl Error for ClawError
impl Error for ClawError
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()
Auto Trait Implementations§
impl Freeze for ClawError
impl !RefUnwindSafe for ClawError
impl Send for ClawError
impl Sync for ClawError
impl Unpin for ClawError
impl UnsafeUnpin for ClawError
impl !UnwindSafe for ClawError
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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