pub struct StreamingProgress {
pub total_rows: Option<u64>,
pub processed_rows: u64,
pub batches_processed: u64,
pub start_time: Instant,
}Expand description
Progress tracking for streaming operations
Fields§
§total_rows: Option<u64>§processed_rows: u64§batches_processed: u64§start_time: InstantImplementations§
Auto Trait Implementations§
impl Freeze for StreamingProgress
impl RefUnwindSafe for StreamingProgress
impl Send for StreamingProgress
impl Sync for StreamingProgress
impl Unpin for StreamingProgress
impl UnsafeUnpin for StreamingProgress
impl UnwindSafe for StreamingProgress
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