pub struct StreamingCsvProcessor { /* private fields */ }Expand description
Streaming CSV processor that visits rows one at a time without materializing the full DataFrame. Memory usage is O(ncols).
Implementations§
Auto Trait Implementations§
impl Freeze for StreamingCsvProcessor
impl RefUnwindSafe for StreamingCsvProcessor
impl Send for StreamingCsvProcessor
impl Sync for StreamingCsvProcessor
impl Unpin for StreamingCsvProcessor
impl UnsafeUnpin for StreamingCsvProcessor
impl UnwindSafe for StreamingCsvProcessor
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