Skip to main content

StorageError

Enum StorageError 

Source
pub enum StorageError {
Show 15 variants NotFound { capability: StorageCapability, resource: &'static str, key: String, }, AlreadyExists { capability: StorageCapability, resource: &'static str, key: String, }, Conflict { capability: StorageCapability, operation: Cow<'static, str>, message: String, }, InvalidInput { capability: StorageCapability, operation: Cow<'static, str>, message: String, }, Unsupported { capability: StorageCapability, operation: Cow<'static, str>, message: String, }, Pool { operation: Cow<'static, str>, message: String, }, Timeout { operation: Cow<'static, str>, }, Transaction { operation: Cow<'static, str>, message: String, }, Serialization { capability: StorageCapability, message: String, }, IndexMaintenance { capability: StorageCapability, message: String, }, Driver { capability: StorageCapability, operation: Cow<'static, str>, source: Box<dyn StdError + Send + Sync>, }, WriteQueueFull { timeout_ms: u64, }, Internal(String), WriterTaskNoRuntime, CapacityFloor { capability: StorageCapability, volume: String, available_bytes: u64, floor_bytes: u64, },
}
Expand description

Unified error type for all storage operations.

Variants§

§

NotFound

Fields

§resource: &'static str
§

AlreadyExists

Fields

§resource: &'static str
§

Conflict

Fields

§operation: Cow<'static, str>
§message: String
§

InvalidInput

Fields

§operation: Cow<'static, str>
§message: String
§

Unsupported

Fields

§operation: Cow<'static, str>
§message: String
§

Pool

Fields

§operation: Cow<'static, str>
§message: String
§

Timeout

Fields

§operation: Cow<'static, str>
§

Transaction

Fields

§operation: Cow<'static, str>
§message: String
§

Serialization

Fields

§message: String
§

IndexMaintenance

Fields

§message: String
§

Driver

Fields

§operation: Cow<'static, str>
§source: Box<dyn StdError + Send + Sync>
§

WriteQueueFull

The bounded write-queue channel (ADR-067 Component A) did not free capacity within the caller-supplied deadline. Returned only when a caller wraps WriterTaskHandle::send’s channel.send().await in a tokio::time::timeout; there is no immediate-error try_send path.

Fields

§timeout_ms: u64
§

Internal(String)

An internal write-queue plumbing failure not attributable to a specific storage capability: the writer task’s channel closed (the task panicked or was dropped) or its oneshot reply was dropped before sending a result.

§

WriterTaskNoRuntime

KHIVE_WRITE_QUEUE=1 is set but the calling thread has no Tokio runtime context, so the writer task cannot be spawned (ADR-067 Component A). Returned instead of panicking. See crates/khive-storage/docs/api/error-taxonomy.md#writertasknoruntime.

§

CapacityFloor

A filesystem-backed capability (e.g. BlobStore) refused a write because volume’s available space, after accounting for the pending write, would drop below the configured free-space floor (khive#292).

Fields

§volume: String
§available_bytes: u64
§floor_bytes: u64

Implementations§

Source§

impl StorageError

Source

pub fn driver( capability: StorageCapability, operation: impl Into<Cow<'static, str>>, source: impl StdError + Send + Sync + 'static, ) -> Self

Construct a Driver error wrapping a backend-specific error source.

Source

pub fn capability(&self) -> Option<StorageCapability>

Return the storage capability surface that produced this error, if any.

Source

pub fn is_retryable(&self) -> bool

Whether this error is transient and the operation may succeed on retry.

Source

pub fn is_fts5_syntax_error(&self) -> bool

Whether this error is an FTS5 query-parser rejection of the MATCH expression itself, as opposed to a connection/pool/driver-level failure of the text-search backend.

True only for Driver errors from the Text capability at the fts_search operation whose message names one of SQLite’s FTS5 parser failure modes (syntax error, stack overflow, unsupported column/phrase/NEAR query); all other errors return false.

Callers that fail-open the FTS leg of a hybrid search (degrading to vector-only results on a bad query string) MUST gate on this predicate rather than on StorageError broadly — treating every Err as degradable turns a real backend outage into a silently-empty “successful” search (issue #389). See crates/khive-storage/docs/api/error-taxonomy.md#is_fts5_syntax_error.

Source

pub fn is_unique_constraint_violation(&self) -> bool

Whether this error is a UNIQUE constraint violation from a raw SQL execute (e.g. an INSERT racing an existing row under a natural key). True only for Driver errors from the Sql capability whose operation is one of execute, pool_writer.execute, or tx.execute, and whose message contains UNIQUE constraint failed. Batch/script operations are intentionally excluded.

Callers that treat exact-key duplicates as a tolerated no-op (ADR-081 §4 serve-ledger idempotency) MUST gate on this predicate rather than swallowing every Driver error at execute — that would also hide genuine write failures (disk full, corruption). See crates/khive-storage/docs/api/error-taxonomy.md#is_unique_constraint_violation.

Trait Implementations§

Source§

impl Debug for StorageError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for StorageError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for StorageError

Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.