pub enum GraphRAGError {
VectorSearchError(String),
GraphTraversalError(String),
CommunityDetectionError(String),
GenerationError(String),
EmbeddingError(String),
SparqlError(String),
ConfigError(String),
InternalError(String),
}Expand description
GraphRAG error types
Variants§
VectorSearchError(String)
GraphTraversalError(String)
CommunityDetectionError(String)
GenerationError(String)
EmbeddingError(String)
SparqlError(String)
ConfigError(String)
InternalError(String)
Trait Implementations§
Source§impl Debug for GraphRAGError
impl Debug for GraphRAGError
Source§impl Display for GraphRAGError
impl Display for GraphRAGError
Source§impl Error for GraphRAGError
impl Error for GraphRAGError
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()
Auto Trait Implementations§
impl Freeze for GraphRAGError
impl RefUnwindSafe for GraphRAGError
impl Send for GraphRAGError
impl Sync for GraphRAGError
impl Unpin for GraphRAGError
impl UnwindSafe for GraphRAGError
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