pub enum KyuError {
}Expand description
Top-level error type for the entire KyuGraph engine. Each variant corresponds to a distinct subsystem, matching the Kuzu/RyuGraph exception hierarchy.
Variants§
Parser(String)
Binder(String)
Catalog(String)
Storage(String)
Transaction(String)
Runtime(String)
Internal(String)
Io
Overflow(String)
Copy(String)
Delta(String)
Extension(String)
NotImplemented(String)
Interrupted
Trait Implementations§
Source§impl Error for KyuError
impl Error for KyuError
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 KyuError
impl !RefUnwindSafe for KyuError
impl Send for KyuError
impl Sync for KyuError
impl Unpin for KyuError
impl UnsafeUnpin for KyuError
impl !UnwindSafe for KyuError
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