pub struct CsvLoader { /* private fields */ }Expand description
Loads documents from CSV data. Each row becomes a Document.
The content_column specifies which column to use as document content.
If not set, all columns are concatenated.
An id_column can optionally specify the column for document IDs.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CsvLoader
impl RefUnwindSafe for CsvLoader
impl Send for CsvLoader
impl Sync for CsvLoader
impl Unpin for CsvLoader
impl UnsafeUnpin for CsvLoader
impl UnwindSafe for CsvLoader
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