#[repr(C)]pub struct ray_progress_t {
pub op_name: *const c_char,
pub phase: *const c_char,
pub rows_done: u64,
pub rows_total: u64,
pub elapsed_sec: f64,
pub mem_used: i64,
pub mem_total: i64,
pub final_: bool,
pub bytes_done: u64,
pub bytes_total: u64,
}Fields§
§op_name: *const c_char§phase: *const c_char§rows_done: u64§rows_total: u64§elapsed_sec: f64§mem_used: i64§mem_total: i64§final_: bool§bytes_done: u64§bytes_total: u64Trait Implementations§
Source§impl Clone for ray_progress_t
impl Clone for ray_progress_t
Source§fn clone(&self) -> ray_progress_t
fn clone(&self) -> ray_progress_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ray_progress_t
Auto Trait Implementations§
impl !Send for ray_progress_t
impl !Sync for ray_progress_t
impl Freeze for ray_progress_t
impl RefUnwindSafe for ray_progress_t
impl Unpin for ray_progress_t
impl UnsafeUnpin for ray_progress_t
impl UnwindSafe for ray_progress_t
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