pub struct Progress {
pub read_rows: u64,
pub read_bytes: u64,
pub total_rows_to_read: u64,
pub total_bytes_to_read: Option<u64>,
pub written_rows: Option<u64>,
pub written_bytes: Option<u64>,
pub elapsed_ns: Option<u64>,
}
Expand description
Query execution progress. Values are delta and must be summed.
See https://clickhouse.com/codebrowser/ClickHouse/src/IO/Progress.h.html
Fields§
§read_rows: u64
§read_bytes: u64
§total_rows_to_read: u64
§total_bytes_to_read: Option<u64>
§written_rows: Option<u64>
§written_bytes: Option<u64>
§elapsed_ns: Option<u64>
Trait Implementations§
impl Copy for Progress
impl Eq for Progress
impl StructuralPartialEq for Progress
Auto Trait Implementations§
impl Freeze for Progress
impl RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl UnwindSafe for Progress
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.