pub enum ErrorHandling {
FailFast,
Collect,
Skip,
}Expand description
Options for handling errors during vector index building.
Variants§
FailFast
Stop on first error.
Collect
Continue and collect errors.
Skip
Log and skip problematic files.
Trait Implementations§
Source§impl Clone for ErrorHandling
impl Clone for ErrorHandling
Source§fn clone(&self) -> ErrorHandling
fn clone(&self) -> ErrorHandling
Returns a duplicate of the value. Read more
1.0.0 · 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 ErrorHandling
impl Debug for ErrorHandling
Source§impl Default for ErrorHandling
impl Default for ErrorHandling
Source§fn default() -> ErrorHandling
fn default() -> ErrorHandling
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ErrorHandling
impl RefUnwindSafe for ErrorHandling
impl Send for ErrorHandling
impl Sync for ErrorHandling
impl Unpin for ErrorHandling
impl UnsafeUnpin for ErrorHandling
impl UnwindSafe for ErrorHandling
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