pub struct Profile {
pub rows: u64,
pub blocks: u64,
pub bytes: u64,
pub rows_before_limit: u64,
pub applied_limit: bool,
pub calculated_rows_before_limit: bool,
}Expand description
Profile information
Fields§
§rows: u64Number of rows processed.
blocks: u64Number of blocks processed.
bytes: u64Number of bytes processed.
rows_before_limit: u64Number of rows before LIMIT was applied.
applied_limit: boolWhether a LIMIT clause was applied.
calculated_rows_before_limit: boolWhether rows_before_limit was actually calculated.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnwindSafe for Profile
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