pub enum EngineError {
Show 16 variants
Storage,
Projection,
Vector,
Embedder,
EmbedderNotConfigured,
KindNotVectorIndexed,
EmbedderDimensionMismatch {
expected: u32,
actual: u32,
},
Scheduler,
OpStore,
WriteValidation,
SchemaValidation,
Overloaded,
Closing,
Extractor,
InvalidFilter {
reason: String,
},
InvalidArgument {
msg: String,
},
}Variants§
Storage
Projection
Vector
Embedder
EmbedderNotConfigured
KindNotVectorIndexed
EmbedderDimensionMismatch
Scheduler
OpStore
WriteValidation
SchemaValidation
Overloaded
Closing
Extractor
G11 (Slice 15) — BYO-LLM extractor subprocess error (protocol mismatch, spawn failure, or harness-returned error code).
InvalidFilter
G4 (Slice 35) — filter predicate construction error: non-allowlisted
path or invalid filter argument. NOT a panic — returned as a typed error
from Predicate::json_path_eq / Predicate::json_path_compare.
InvalidArgument
Slice 20 (G5/G6) — an argument is out of the accepted range (e.g.
depth > 3 for graph traversal). The msg field carries a
human-readable explanation; it is intentionally non-exhaustive so the
binding layer can forward it as a ValueError / TypeError.
Trait Implementations§
Source§impl Clone for EngineError
impl Clone for EngineError
Source§fn clone(&self) -> EngineError
fn clone(&self) -> EngineError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EngineError
impl Debug for EngineError
Source§impl Display for EngineError
impl Display for EngineError
impl Eq for EngineError
Source§impl Error for EngineError
impl Error for EngineError
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 PartialEq for EngineError
impl PartialEq for EngineError
Source§fn eq(&self, other: &EngineError) -> bool
fn eq(&self, other: &EngineError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EngineError
Auto Trait Implementations§
impl Freeze for EngineError
impl RefUnwindSafe for EngineError
impl Send for EngineError
impl Sync for EngineError
impl Unpin for EngineError
impl UnsafeUnpin for EngineError
impl UnwindSafe for EngineError
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