pub struct ExplainEstimate {
pub total_cost: f64,
pub plan_rows: u64,
}Expand description
Result of an EXPLAIN pre-check.
Fields§
§total_cost: f64PostgreSQL’s estimated total cost (arbitrary units).
plan_rows: u64PostgreSQL’s estimated number of rows returned.
Trait Implementations§
Source§impl Clone for ExplainEstimate
impl Clone for ExplainEstimate
Source§fn clone(&self) -> ExplainEstimate
fn clone(&self) -> ExplainEstimate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExplainEstimate
impl RefUnwindSafe for ExplainEstimate
impl Send for ExplainEstimate
impl Sync for ExplainEstimate
impl Unpin for ExplainEstimate
impl UnsafeUnpin for ExplainEstimate
impl UnwindSafe for ExplainEstimate
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