#[non_exhaustive]pub enum ImportError {
Fetch(String),
Memory(MemoryError),
}Expand description
Errors raised by KnowledgeIngestionPipeline::run and ImportSource::fetch.
Fetch carries the upstream’s failure shape verbatim (already
redacted by the connector); Memory lifts a MemoryError from the
underlying LongTermMemory so the pipeline error type unifies both
halves of the ingest path.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Fetch(String)
Source-side fetch failed (HTTP error, auth failure, file not found, …). Connectors are responsible for redacting secrets from the message before propagating.
Memory(MemoryError)
Downstream memory write failed.
Trait Implementations§
Source§impl Debug for ImportError
impl Debug for ImportError
Source§impl Display for ImportError
impl Display for ImportError
Source§impl Error for ImportError
impl Error for ImportError
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 From<MemoryError> for ImportError
impl From<MemoryError> for ImportError
Source§fn from(source: MemoryError) -> Self
fn from(source: MemoryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ImportError
impl RefUnwindSafe for ImportError
impl Send for ImportError
impl Sync for ImportError
impl Unpin for ImportError
impl UnsafeUnpin for ImportError
impl UnwindSafe for ImportError
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